summaryrefslogtreecommitdiffstats
path: root/testcases/features
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-08-12 15:00:05 +0200
committerMorgan Richomme <morgan.richomme@orange.com>2016-08-12 15:00:05 +0200
commit1a54e35fdde9f328ced7ea788f2f6daa94a9ce31 (patch)
tree1fece203137a84203c1c42ad48970c0bf62bbef4 /testcases/features
parent4085c3ba8d777b61af7a35be582d2c2007f19fad (diff)
copper push to DB fix
JIRA: FUNCTEST-67 Change-Id: I03620f7f41f78da0ab004d55f72da88e9a30a1ea Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'testcases/features')
-rwxr-xr-xtestcases/features/copper.py40
1 files changed, 23 insertions, 17 deletions
diff --git a/testcases/features/copper.py b/testcases/features/copper.py
index 9efcbd7f4..78c0fb4d2 100755
--- a/testcases/features/copper.py
+++ b/testcases/features/copper.py
@@ -60,23 +60,29 @@ def main():
version = functest_utils.get_version(logger)
build_tag = functest_utils.get_build_tag(logger)
- logger.info("Pushing COPPER results: TEST_DB_URL=%(db)s pod_name=%(pod)s "
- "version=%(v)s scenario=%(s)s criteria=%(c)s details=%(d)s" % {
- 'db': TEST_DB_URL,
- 'pod': pod_name,
- 'v': version,
- 's': scenario,
- 'c': details['status'],
- 'b': build_tag,
- 'd': details,
- })
- functest_utils.push_results_to_db("COPPER",
- "COPPER-notification",
- logger,
- start_time,
- stop_time,
- details['status'],
- details)
+ try:
+ logger.info("Pushing COPPER results: TEST_DB_URL=%(db)s "
+ "pod_name=%(pod)s version=%(v)s scenario=%(s)s "
+ "criteria=%(c)s details=%(d)s" % {
+ 'db': TEST_DB_URL,
+ 'pod': pod_name,
+ 'v': version,
+ 's': scenario,
+ 'c': details['status'],
+ 'b': build_tag,
+ 'd': details,
+ })
+ functest_utils.push_results_to_db("copper",
+ "copper-notification",
+ logger,
+ start_time,
+ stop_time,
+ details['status'],
+ details)
+ except:
+ logger.error("Error pushing results into Database '%s'"
+ % sys.exc_info()[0])
+
if ret_val != 0:
sys.exit(-1)