summaryrefslogtreecommitdiffstats
path: root/reporting/functest/testCase.py
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2017-02-28 11:47:30 +0100
committerMorgan Richomme <morgan.richomme@orange.com>2017-02-28 11:54:16 +0100
commita6f64458d2627b0085cf374ed2744263dd89c788 (patch)
tree0576ea935c41f0f3ece1c1452c3917e3b127c1be /reporting/functest/testCase.py
parent698ad5fbd8ec97cc534299174c0118a88be55f7d (diff)
Move case base from tempest_smoke_serial to snaps_healthcheck
It will allow to show additional scenarios in the reporting page the scenarios that fail on healthcheck or smoke tests before running tempest_smoke_serial Change-Id: I0d9ba84296bfc867ab80caa7873bb5bcb8469fc2 Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'reporting/functest/testCase.py')
-rw-r--r--reporting/functest/testCase.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/reporting/functest/testCase.py b/reporting/functest/testCase.py
index e2d4604..f77136e 100644
--- a/reporting/functest/testCase.py
+++ b/reporting/functest/testCase.py
@@ -46,8 +46,8 @@ class TestCase(object):
'api_check': 'Health (api)',
'snaps_smoke': 'SNAPS',
'snaps_health_check': 'Health (dhcp)',
- 'gluon_vping': 'Netready',
- 'barometercollectd': 'Barometer'}
+ 'netready': 'Netready',
+ 'barometer': 'Barometer'}
try:
self.displayName = display_name_matrix[self.name]
except:
@@ -145,8 +145,8 @@ class TestCase(object):
'api_check': 'api_check',
'snaps_smoke': 'snaps_smoke',
'snaps_health_check': 'snaps_health_check',
- 'gluon_vping': 'gluon_vping',
- 'barometercollectd': 'barometercollectd'}
+ 'netready': 'gluon_vping',
+ 'barometer': 'barometercollectd'}
try:
return test_match_matrix[self.name]
except: