summaryrefslogtreecommitdiffstats
path: root/utils/test/reporting
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-06-17 18:02:59 +0200
committerMorgan Richomme <morgan.richomme@orange.com>2016-06-17 18:02:59 +0200
commita8d646ccde9c2db6aeb1f826017d9eed7f191240 (patch)
tree8ff20d9d74fe7aadf8905f19dacef9826f8b8ad4 /utils/test/reporting
parentbda02e7849834819c4b6a007749931ddbbe83d13 (diff)
Bug fix on test name after name alignement
JIRA: FUNCTEST-304 Change-Id: Ie854b677003350a65e90279222ceb281d2f5b18c Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'utils/test/reporting')
-rw-r--r--utils/test/reporting/functest/reporting-tempest.py2
-rw-r--r--utils/test/reporting/functest/reporting-vims.py3
2 files changed, 2 insertions, 3 deletions
diff --git a/utils/test/reporting/functest/reporting-tempest.py b/utils/test/reporting/functest/reporting-tempest.py
index e9662d5c2..a065ef442 100644
--- a/utils/test/reporting/functest/reporting-tempest.py
+++ b/utils/test/reporting/functest/reporting-tempest.py
@@ -10,7 +10,7 @@ PERIOD = 7
print "Generate Tempest automatic reporting"
for installer in installers:
# we consider the Tempest results of the last PERIOD days
- url = "http://testresults.opnfv.org/test/api/v1/results?case=Tempest"
+ url = "http://testresults.opnfv.org/test/api/v1/results?case=tempest_smoke_serial"
request = Request(url + '&period=' + str(PERIOD)
+ '&installer=' + installer + '&version=master')
diff --git a/utils/test/reporting/functest/reporting-vims.py b/utils/test/reporting/functest/reporting-vims.py
index 5ba92d6c3..922c6f342 100644
--- a/utils/test/reporting/functest/reporting-vims.py
+++ b/utils/test/reporting/functest/reporting-vims.py
@@ -24,7 +24,7 @@ installers = ["fuel", "compass", "joid", "apex"]
step_order = ["initialisation", "orchestrator", "vIMS", "sig_test"]
for installer in installers:
- request = Request('http://testresults.opnfv.org/test/api/v1/results?case=vIMS&installer=' + installer)
+ request = Request('http://testresults.opnfv.org/test/api/v1/results?case=vims&installer=' + installer)
try:
response = urlopen(request)
@@ -34,7 +34,6 @@ for installer in installers:
print 'No kittez. Got an error code:', e
test_results = results['results']
- test_results.reverse()
scenario_results = {}
for r in test_results: