summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/tests/runner.py
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-07-18 18:08:56 -0400
committerDR695H <dr695h@att.com>2019-07-18 18:08:56 -0400
commit1fade32a69abdd33e9cc9449fd214d3f5b1e4677 (patch)
treed6839a851cc78f1c67e1022a8983db38f7691158 /robotframework-onap/tests/runner.py
parenteb594307f4350b686263cae2355dcbb910ec9403 (diff)
fix uuid reimplemntation
Change-Id: I2a3fea06b026a450b3c334706c386424e00f07e0 Issue-ID: TEST-174 Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/tests/runner.py')
-rw-r--r--robotframework-onap/tests/runner.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/robotframework-onap/tests/runner.py b/robotframework-onap/tests/runner.py
index 3422dfe..63487ff 100644
--- a/robotframework-onap/tests/runner.py
+++ b/robotframework-onap/tests/runner.py
@@ -5,7 +5,7 @@ from unittest import TestSuite
# import your test modules
from tests.vcpeutils.SoUtils_test import SoUtilsTest
from tests.ONAPLibrary.ProtobufKeywordsTest import ProtobufKeywordsTest
-
+from tests.ONAPLibrary.UUIDKeywordsTest import UUIDKeywordsTest
# initialize the test suite
loader = TestLoader()
@@ -14,6 +14,7 @@ suite = TestSuite()
# add tests to the test suite
suite.addTests(loader.loadTestsFromTestCase(ProtobufKeywordsTest))
suite.addTests(loader.loadTestsFromTestCase(SoUtilsTest))
+suite.addTests(loader.loadTestsFromTestCase(UUIDKeywordsTest))
# initialize a runner, pass it your suite and run it
runner = TextTestRunner(verbosity=3)