From 831ec1cf15cc6b945a86c4885331d51a295004c9 Mon Sep 17 00:00:00 2001
From: boucherv <valentin.boucher@orange.com>
Date: Wed, 24 Feb 2016 14:33:51 +0100
Subject: Add jenkins build tag for result api

Ex: jenkins-functest-compass-intel-pod8-daily-master-19
this will bring together all  tests passed on the same functest run

JIRA: FUNCTEST-140
Change-Id: I3c1cd8137184509ee5fdeeb2df5399d4c71e3f67
Signed-off-by: boucherv <valentin.boucher@orange.com>
---
 testcases/vPing/CI/libraries/vPing_ssh.py      | 3 ++-
 testcases/vPing/CI/libraries/vPing_userdata.py | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

(limited to 'testcases/vPing/CI/libraries')

diff --git a/testcases/vPing/CI/libraries/vPing_ssh.py b/testcases/vPing/CI/libraries/vPing_ssh.py
index e3b2ec5e5..508ac0ff5 100644
--- a/testcases/vPing/CI/libraries/vPing_ssh.py
+++ b/testcases/vPing/CI/libraries/vPing_ssh.py
@@ -334,10 +334,11 @@ def push_results(start_time_ts, duration, test_status):
         logger.debug("Pushing result into DB...")
         scenario = functest_utils.get_scenario(logger)
         pod_name = functest_utils.get_pod_name(logger)
+        build_tag = functest_utils.get_build_tag(logger)
         functest_utils.push_results_to_db(TEST_DB,
                                           "functest",
                                           "vPing",
-                                          logger, pod_name, scenario,
+                                          logger, pod_name, scenario, build_tag,
                                           payload={'timestart': start_time_ts,
                                                    'duration': duration,
                                                    'status': test_status})
diff --git a/testcases/vPing/CI/libraries/vPing_userdata.py b/testcases/vPing/CI/libraries/vPing_userdata.py
index eac2df5c1..8f214205b 100644
--- a/testcases/vPing/CI/libraries/vPing_userdata.py
+++ b/testcases/vPing/CI/libraries/vPing_userdata.py
@@ -316,10 +316,11 @@ def push_results(start_time_ts, duration, test_status):
         logger.debug("Pushing result into DB...")
         scenario = functest_utils.get_scenario(logger)
         pod_name = functest_utils.get_pod_name(logger)
+        build_tag = functest_utils.get_build_tag(logger)
         functest_utils.push_results_to_db(TEST_DB,
                                           "functest",
                                           "vPing_userdata",
-                                          logger, pod_name, scenario,
+                                          logger, pod_name, scenario, build_tag,
                                           payload={'timestart': start_time_ts,
                                                    'duration': duration,
                                                    'status': test_status})
-- 
cgit