Add test to ensure all needed modules are provided by setuptools 13/101113/2
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>
Tue, 4 Feb 2020 14:09:29 +0000 (15:09 +0100)
committerMarco Platania <platania@research.att.com>
Fri, 7 Feb 2020 14:06:09 +0000 (14:06 +0000)
Change-Id: I592a6bf393007612c263f6e54aabfcdb6738141a
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Issue-ID: INT-1427

test/vcpe/tests/test_imports.py [new file with mode: 0644]

diff --git a/test/vcpe/tests/test_imports.py b/test/vcpe/tests/test_imports.py
new file mode 100644 (file)
index 0000000..fee8507
--- /dev/null
@@ -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