summaryrefslogtreecommitdiffstats
path: root/testcases
diff options
context:
space:
mode:
authorboucherv <valentin.boucher@orange.com>2016-03-21 09:32:27 +0100
committerboucherv <valentin.boucher@orange.com>2016-03-21 09:36:43 +0100
commit060c49f1d7d63c7cf662a6f61e033385e76e8a3c (patch)
tree24836e2834d51e9236d08883cdf4e2a5fc3aec5e /testcases
parentb1924aa709a6ce74952e461a07a2fc10c2f2aae3 (diff)
improve status criteria
Change-Id: Icfab7ead860d96cef119cc63e9fccfd9d62c009d Signed-off-by: boucherv <valentin.boucher@orange.com>
Diffstat (limited to 'testcases')
-rw-r--r--testcases/vIMS/CI/vIMS.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/testcases/vIMS/CI/vIMS.py b/testcases/vIMS/CI/vIMS.py
index 9aff4d8d6..1a7d89f47 100644
--- a/testcases/vIMS/CI/vIMS.py
+++ b/testcases/vIMS/CI/vIMS.py
@@ -124,7 +124,10 @@ def download_and_add_image_on_glance(glance, image_name, image_url):
def step_failure(step_name, error_msg):
logger.error(error_msg)
set_result(step_name, 0, error_msg)
- push_results()
+ status = "failed"
+ if step_name == "sig_test":
+ status = "passed"
+ push_results(status)
exit(-1)
@@ -250,9 +253,7 @@ def test_clearwater():
# - VNF deployed
status = "failed"
try:
- # TODO precise condition, for the moment if duration > 3m,
- # => I consider it is good..
- if RESULTS['orchestrator']['duration'] > 180 and RESULT['vIMS']['duration'] > 180:
+ if RESULTS['orchestrator']['duration'] > 0 and RESULT['vIMS']['duration'] > 0:
status = "passed"
except:
logger.error("Unable to set test status")