diff options
author | valentin boucher <valentin.boucher@orange.com> | 2017-04-04 13:12:56 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-04-04 13:12:56 +0000 |
commit | d06d840c00d4e3b58b826447e17035469e967357 (patch) | |
tree | d7941107f940203352422808e1777c5dce5de32b /functest/ci | |
parent | 7af7f85cc1d8cc0ef05ec839a70504f89d38f806 (diff) | |
parent | 457321c2c8ed7e8dcb1daccb6d2fd9814e6a98ca (diff) |
Merge "Add case_name as constructor arg"
Diffstat (limited to 'functest/ci')
-rwxr-xr-x | functest/ci/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/ci/run_tests.py b/functest/ci/run_tests.py index 37b90f92..5793c04a 100755 --- a/functest/ci/run_tests.py +++ b/functest/ci/run_tests.py @@ -144,7 +144,7 @@ def run_test(test, tier_name, testcases=None): try: module = importlib.import_module(run_dict['module']) cls = getattr(module, run_dict['class']) - test_case = cls() + test_case = cls(case_name=test_name) try: kwargs = run_dict['args'] |