summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2016-11-24 13:59:48 +0100
committerjose.lausuch <jose.lausuch@ericsson.com>2016-11-24 14:00:18 +0100
commiteafb8bff52ea6e8f4808f66e061ea5e442060a85 (patch)
treec9e6e65714753386f124f7ac07fa1b3a76cde294 /test
parent5b2b4922740b2f189b1be2192d8e405fb9a535bb (diff)
Remove push to DB of overall result of bgpvpn test case
Functest will capture the return value of run_tests.py and will report to the DB accordingly (PASS/FAIL) JIRA: SDNVPN-83 This follows this approach: https://wiki.opnfv.org/pages/viewpage.action?pageId=8685677#HowdoIintegrateafeaturetestcaseinFunctest?-3.Createapythonmoduleforyourtest Change-Id: I664964038b59ab8f38946d2dfe586dbdd41e9906 Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'test')
-rw-r--r--test/functest/run_tests.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/functest/run_tests.py b/test/functest/run_tests.py
index be2bcb2..b5361cd 100644
--- a/test/functest/run_tests.py
+++ b/test/functest/run_tests.py
@@ -45,9 +45,7 @@ def main():
config_yaml = yaml.safe_load(f)
testcases = config_yaml.get("testcases")
- overall_details = {}
overall_status = "PASS"
- overall_start_time = time.time()
for testcase in testcases:
if testcases[testcase]['enabled']:
test_name = testcase
@@ -61,11 +59,9 @@ def main():
start_time = time.time()
result = t.main()
end_time = time.time()
- duration = end_time - start_time
if result < 0:
status = "FAIL"
overall_status = "FAIL"
- overall_details.update({test_name_db: "execution error."})
else:
status = result.get("status")
details = result.get("details")
@@ -75,18 +71,10 @@ def main():
if status == "FAIL":
overall_status = "FAIL"
- dic = {"duration": duration, "status": status}
- overall_details.update({test_name_db: dic})
if args.report:
push_results(
test_name_db, start_time, end_time, status, details)
- overall_end_time = time.time()
- if args.report:
- push_results(
- "bgpvpn", overall_start_time, overall_end_time,
- overall_status, overall_details)
-
if overall_status == "FAIL":
sys.exit(-1)