diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2022-03-03 11:19:47 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2022-03-03 12:25:31 +0100 |
commit | 8b64f764be98986a5c395c38c96737cf8a35b58c (patch) | |
tree | b57d9880f0596a2393faee8ebcbbd91e491b9737 /xtesting/core/testcase.py | |
parent | 96715b457b83ad4768f3756b211a4e12bf000087 (diff) |
Allow overriding project_name via env
It now offers a new env var, PROJECT_NAME, to override the default
value in testcases.yaml.
Change-Id: I911f1af56afe88edb37de40176733b65bc8e490a
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 318c2e427e2933fdff2213bf807249c66628b56f)
Diffstat (limited to 'xtesting/core/testcase.py')
-rw-r--r-- | xtesting/core/testcase.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xtesting/core/testcase.py b/xtesting/core/testcase.py index bccf76d2..744a59f1 100644 --- a/xtesting/core/testcase.py +++ b/xtesting/core/testcase.py @@ -62,7 +62,8 @@ class TestCase(): def __init__(self, **kwargs): self.details = {} - self.project_name = kwargs.get('project_name', 'xtesting') + self.project_name = os.environ.get( + 'PROJECT_NAME', kwargs.get('project_name', 'xtesting')) self.case_name = kwargs.get('case_name', '') self.criteria = kwargs.get('criteria', 100) self.result = 0 |