summaryrefslogtreecommitdiffstats
path: root/utils/test/reporting
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2017-02-23 07:24:22 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-02-23 07:24:22 +0000
commit2a1abd9aa9a2371cfa86d3e64ac1c81e3a835c31 (patch)
tree49f888724fdea3115927a5dd763acf9157800b4e /utils/test/reporting
parent63ccc977c5350addf6d264917ec31f33781721df (diff)
parentf1aff2cafafce411ea7d45c7bcd78c276905a962 (diff)
Merge "Add Netready and Barometer tests to the reporting dashboard"
Diffstat (limited to 'utils/test/reporting')
-rw-r--r--utils/test/reporting/functest/testCase.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/utils/test/reporting/functest/testCase.py b/utils/test/reporting/functest/testCase.py
index 22196c86b..e40aa7f00 100644
--- a/utils/test/reporting/functest/testCase.py
+++ b/utils/test/reporting/functest/testCase.py
@@ -44,7 +44,9 @@ class TestCase(object):
'connection_check': 'Health (connection)',
'api_check': 'Health (api)',
'snaps_smoke': 'SNAPS',
- 'snaps_health_check': 'Health (dhcp)'}
+ 'snaps_health_check': 'Health (dhcp)',
+ 'gluon_vping': 'Netready',
+ 'barometercollectd': 'Barometer'}
try:
self.displayName = display_name_matrix[self.name]
except:
@@ -140,8 +142,9 @@ class TestCase(object):
'connection_check': 'connection_check',
'api_check': 'api_check',
'snaps_smoke': 'snaps_smoke',
- 'snaps_health_check': 'snaps_health_check'
- }
+ 'snaps_health_check': 'snaps_health_check',
+ 'gluon_vping': 'gluon_vping',
+ 'barometercollectd': 'barometercollectd'}
try:
return test_match_matrix[self.name]
except: