diff options
Diffstat (limited to 'testcases/Controllers')
-rw-r--r-- | testcases/Controllers/ODL/CI/odlreport2db.py | 2 | ||||
-rw-r--r-- | testcases/Controllers/ONOS/Teston/CI/onosfunctest.py | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/testcases/Controllers/ODL/CI/odlreport2db.py b/testcases/Controllers/ODL/CI/odlreport2db.py index 47067963a..50731ffe1 100644 --- a/testcases/Controllers/ODL/CI/odlreport2db.py +++ b/testcases/Controllers/ODL/CI/odlreport2db.py @@ -122,6 +122,7 @@ def main(argv): f.close() database = functest_yaml.get("results").get("test_db_url") + build_tag = functest_utils.get_build_tag() try: # example: @@ -135,6 +136,7 @@ def main(argv): None, data['pod_name'], scenario, + build_tag, data) except: print("Error pushing results into Database '%s'" % sys.exc_info()[0]) diff --git a/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py b/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py index dc45088b3..563fa5082 100644 --- a/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py +++ b/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py @@ -180,12 +180,13 @@ def main(): # TODO check path result for the file scenario = functest_utils.get_scenario(logger) pod_name = functest_utils.get_pod_name(logger) + build_tag = functest_utils.get_build_tag(logger) result = GetResult() functest_utils.push_results_to_db(TEST_DB, "functest", "ONOS", logger, pod_name, scenario, - payload=result) + build_tag, payload=result) except: logger.error("Error pushing results into Database") |