summaryrefslogtreecommitdiffstats
path: root/reporting
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2017-02-22 20:10:27 +0100
committerjose.lausuch <jose.lausuch@ericsson.com>2017-02-22 20:17:44 +0100
commit6018fc0b65f54b81baa3b0d47e272e61afcb66c1 (patch)
treeed623c91c9531289cb2418f3d8db9c4581306a02 /reporting
parentb01de8dd84c1189b03b17358ff091b5ce326e87e (diff)
Add Netready and Barometer tests to the reporting dashboard
Change-Id: Idc09d3461ee5af09625aba3cf2219b64318145c8 Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'reporting')
-rw-r--r--reporting/functest/testCase.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/reporting/functest/testCase.py b/reporting/functest/testCase.py
index 22196c8..e40aa7f 100644
--- a/reporting/functest/testCase.py
+++ b/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: