diff options
author | 2024-01-18 11:13:10 +0100 | |
---|---|---|
committer | 2024-01-18 12:24:54 +0100 | |
commit | 50fce9a86506b5e47f842ae472edd8188bbb7e45 (patch) | |
tree | 512f13344cd6a89ab770bf22161f40fa9274cc3a | |
parent | e0c8589883be36543ba50729296746728415c6f7 (diff) |
Don't override env values via testcases.yaml if they existstable/wallaby
Change-Id: I0d7a52f8bae37ea09f15a5344ee1f7d19d0ecd77
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit a337116e0a023c2cfcbe4a4c56da4e8be15afae0)
-rw-r--r-- | xtesting/ci/run_tests.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xtesting/ci/run_tests.py b/xtesting/ci/run_tests.py index 4e22f612..cee953f1 100644 --- a/xtesting/ci/run_tests.py +++ b/xtesting/ci/run_tests.py @@ -170,10 +170,11 @@ class Runner(): LOGGER.info("Test result:\n\n%s\n", test_case) return testcase.TestCase.EX_TESTCASE_SKIPPED if 'env' in run_dict: - LOGGER.info( - "Setting env for test case '%s'...", test.get_name()) for key, value in run_dict['env'].items(): - os.environ[key] = str(value) + if key not in os.environ: + LOGGER.info("Setting env for test case '%s'...", + test.get_name()) + os.environ[key] = str(value) LOGGER.info("Running test case '%s'...", test.get_name()) try: kwargs = run_dict['args'] |