summaryrefslogtreecommitdiffstats
path: root/testcases/VIM/OpenStack/CI/libraries/run_tempest.py
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2015-11-30 09:39:54 +0100
committerMorgan Richomme <morgan.richomme@orange.com>2015-11-30 14:53:03 +0100
commit8c358c29b07ad126614c1c327d2d95f517d793f4 (patch)
treea765c94bf35fd78127a85d59ae8d938ca525a6ff /testcases/VIM/OpenStack/CI/libraries/run_tempest.py
parent0045f29f59ee5c800261cd77145fec0e9558740f (diff)
Add functions to retrieve POD name in Functest
JIRA: FUNCTEST-108 Change-Id: I3453933e12cd7af9b06f50b327873f7516609566 Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'testcases/VIM/OpenStack/CI/libraries/run_tempest.py')
-rw-r--r--testcases/VIM/OpenStack/CI/libraries/run_tempest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/testcases/VIM/OpenStack/CI/libraries/run_tempest.py b/testcases/VIM/OpenStack/CI/libraries/run_tempest.py
index 8ad62d15e..2d65df425 100644
--- a/testcases/VIM/OpenStack/CI/libraries/run_tempest.py
+++ b/testcases/VIM/OpenStack/CI/libraries/run_tempest.py
@@ -130,7 +130,8 @@ def run_tempest(OPTION):
json_results = {"timestart": time_start, "duration": dur_sec_int,
"tests": int(num_tests), "failures": int(num_failures)}
logger.info("Results: "+str(json_results))
- push_results_to_db(json_results, MODE, "opnfv-jump-2")
+ pod_name = functest_utils.get_pod_name(logger)
+ push_results_to_db(json_results, MODE, pod_name)
def main():