diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-08-25 06:24:38 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-25 06:24:38 +0000 |
commit | fb979fc03b8c744ea0f99658cf2edafe55c17299 (patch) | |
tree | 5f7668c61da4f60cae00989e4bf851de614904d5 /functest/ci/run_tests.py | |
parent | 5f18bc39015c906767b27596a0db6e7077500ff1 (diff) | |
parent | 4ae53d6e1a7f83bbdb8f6d5bc7a1c2f4dc02eb04 (diff) |
Merge "Fix args parsing in run_tests"
Diffstat (limited to 'functest/ci/run_tests.py')
-rw-r--r-- | functest/ci/run_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/ci/run_tests.py b/functest/ci/run_tests.py index 87e3d37b..feafa89e 100644 --- a/functest/ci/run_tests.py +++ b/functest/ci/run_tests.py @@ -189,9 +189,9 @@ class Runner(object): def main(self, **kwargs): if 'noclean' in kwargs: - self.clean_flag = False + self.clean_flag = not kwargs['noclean'] if 'report' in kwargs: - self.report_flag = True + self.report_flag = kwargs['report'] try: if 'test' in kwargs: self.source_rc_file() |