diff options
Diffstat (limited to 'testcases/features/doctor.py')
-rw-r--r-- | testcases/features/doctor.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testcases/features/doctor.py b/testcases/features/doctor.py index 5669a9900..52ffaa900 100644 --- a/testcases/features/doctor.py +++ b/testcases/features/doctor.py @@ -63,17 +63,19 @@ def main(): } pod_name = functest_utils.get_pod_name(logger) scenario = functest_utils.get_scenario(logger) + build_tag = functest_utils.get_build_tag(logger) logger.info("Pushing result: TEST_DB_URL=%(db)s pod_name=%(pod)s " "scenario=%(s)s details=%(d)s" % { 'db': TEST_DB_URL, 'pod': pod_name, 's': scenario, + 'b': build_tag, 'd': details, }) functest_utils.push_results_to_db(TEST_DB_URL, 'doctor','doctor-notification', logger, pod_name, scenario, - details) + build_tag, details) if __name__ == '__main__': |