use scenario instead of git info in version field of the test results
authorMorgan Richomme <morgan.richomme@orange.com>
Mon, 1 Feb 2016 08:51:28 +0000 (09:51 +0100)
committerMorgan Richomme <morgan.richomme@orange.com>
Mon, 1 Feb 2016 08:51:28 +0000 (09:51 +0100)
Change-Id: Ie80cc39e64d0fe70981623229560aa145df95c50
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
testcases/Controllers/ONOS/Teston/CI/onosfunctest.py

index 2d22bae..4357879 100644 (file)
@@ -155,12 +155,12 @@ def main():
     try:
         logger.debug("Push result into DB")
         # TODO check path result for the file
-        git_version = functest_utils.get_git_branch(REPO_PATH)
+        scenario = functest_utils.get_scenario(logger)
         pod_name = functest_utils.get_pod_name(logger)
         result = GetResult()
         functest_utils.push_results_to_db(TEST_DB,
                                           "ONOS",
-                                          logger, pod_name, git_version,
+                                          logger, pod_name, scenario,
                                           payload=result)
     except:
         logger.error("Error pushing results into Database")
@@ -169,4 +169,4 @@ def main():
 
 
 if __name__ == '__main__':
-    main()
\ No newline at end of file
+    main()