From: Bartek Grzybowski Date: Tue, 4 Feb 2020 14:09:29 +0000 (+0100) Subject: Add test to ensure all needed modules are provided by setuptools X-Git-Tag: 6.0.0-ONAP~203 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=157b14a23b18b26fe829dce02233696e19e5a7a9;p=integration.git Add test to ensure all needed modules are provided by setuptools Change-Id: I592a6bf393007612c263f6e54aabfcdb6738141a Signed-off-by: Bartek Grzybowski Issue-ID: INT-1427 --- diff --git a/test/vcpe/tests/test_imports.py b/test/vcpe/tests/test_imports.py new file mode 100644 index 000000000..fee8507dc --- /dev/null +++ b/test/vcpe/tests/test_imports.py @@ -0,0 +1,17 @@ +import sys +sys.path.append('./') + +import vcpecommon +import config_sdnc_so +import csar_parser +import preload +import sdcutils +import soutils +import vcpe_custom_service +import vcpecommon + +# This will test whether all modules that vcpe scripts leverage +# are included in setuptools configuration + +def test_imports(): + pass