From e635dbe042f7e6f806550aa5f31f2c409166a87f Mon Sep 17 00:00:00 2001 From: Morgan Richomme Date: Wed, 6 Jul 2016 10:35:37 +0200 Subject: bug fix use FAIL/PASS as criteria for integration in automatic reporting JIRA: FUNCTEST-355 Change-Id: I683107558b8f83e6de4244d55e6cfd93f0271db7 Signed-off-by: Morgan Richomme --- testcases/features/doctor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testcases') diff --git a/testcases/features/doctor.py b/testcases/features/doctor.py index 946b0adf..ef55506a 100644 --- a/testcases/features/doctor.py +++ b/testcases/features/doctor.py @@ -57,9 +57,9 @@ def main(): version = functest_utils.get_version(logger) build_tag = functest_utils.get_build_tag(logger) - status = "failed" + status = "FAIL" if details['status'] == "OK": - status = "passed" + status = "PASS" logger.info("Pushing Doctor results: TEST_DB_URL=%(db)s pod_name=%(pod)s " "version=%(v)s scenario=%(s)s criteria=%(c)s details=%(d)s" % { -- cgit 1.2.3-korg