diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-11-09 14:04:16 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-11-09 15:03:00 +0100 |
commit | 6a5d964aa60ccfefe2e8750622203cad4bf762a4 (patch) | |
tree | b076a7cc425ab83843927dcc91066d3f2fc54b3c /xtesting/tests/unit | |
parent | 937ba8a21bce58aafd97c8eb3ca3177a3f50ffcd (diff) |
Print Test API links in console
It adds TEST_DB_EXT_URL to print the right links in case of NAT or SSH
port forwardings.
Change-Id: If85b00de7325909facc903fba13a3fd59a1e705f
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 384308c4a5af0a66ff9e78de17ace94ab7d1d51f)
Diffstat (limited to 'xtesting/tests/unit')
-rw-r--r-- | xtesting/tests/unit/core/test_testcase.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xtesting/tests/unit/core/test_testcase.py b/xtesting/tests/unit/core/test_testcase.py index 3dbbac2c..73062149 100644 --- a/xtesting/tests/unit/core/test_testcase.py +++ b/xtesting/tests/unit/core/test_testcase.py @@ -58,6 +58,7 @@ class TestCaseTesting(unittest.TestCase): self.test.result = 100 self.test.details = {"Hello": "World"} os.environ['TEST_DB_URL'] = TestCaseTesting._test_db_url + os.environ['TEST_DB_EXT_URL'] = TestCaseTesting._test_db_url os.environ['INSTALLER_TYPE'] = "installer_type" os.environ['DEPLOY_SCENARIO'] = "scenario" os.environ['NODE_NAME'] = "node_name" |