diff options
author | DR695H <dr695h@att.com> | 2019-07-19 14:29:09 -0400 |
---|---|---|
committer | DR695H <dr695h@att.com> | 2019-07-19 14:29:09 -0400 |
commit | 601ead6cc5e04f276d57d118e1d94d1366278a24 (patch) | |
tree | c62f882a6d62f1138adca38913d9c1b619c7c331 /robotframework-onap/tests/runner.py | |
parent | 1fade32a69abdd33e9cc9449fd214d3f5b1e4677 (diff) |
moving all libs to global scope
Issue-ID: TEST-174
Change-Id: Ieae316661540206eb1e74126f8b8859e373e3786
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/tests/runner.py')
-rw-r--r-- | robotframework-onap/tests/runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/robotframework-onap/tests/runner.py b/robotframework-onap/tests/runner.py index 63487ff..d1b217a 100644 --- a/robotframework-onap/tests/runner.py +++ b/robotframework-onap/tests/runner.py @@ -6,6 +6,7 @@ from unittest import TestSuite from tests.vcpeutils.SoUtils_test import SoUtilsTest from tests.ONAPLibrary.ProtobufKeywordsTest import ProtobufKeywordsTest from tests.ONAPLibrary.UUIDKeywordsTest import UUIDKeywordsTest +from tests.ONAPLibrary.ServiceMappingKeywordsTests import ServiceMappingKeywordsTests # initialize the test suite loader = TestLoader() @@ -15,6 +16,7 @@ suite = TestSuite() suite.addTests(loader.loadTestsFromTestCase(ProtobufKeywordsTest)) suite.addTests(loader.loadTestsFromTestCase(SoUtilsTest)) suite.addTests(loader.loadTestsFromTestCase(UUIDKeywordsTest)) +suite.addTests(loader.loadTestsFromTestCase(ServiceMappingKeywordsTests)) # initialize a runner, pass it your suite and run it runner = TextTestRunner(verbosity=3) |