summaryrefslogtreecommitdiffstats
path: root/utils/test/reporting/functest/testCase.py
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2017-02-14 13:58:21 +0100
committerJose Lausuch <jose.lausuch@ericsson.com>2017-02-14 22:38:03 +0000
commit9301fd3481bcfc106f686ba1b43327a7806e0fd0 (patch)
tree31df381acc632f20dfe73c401576566fa675306d /utils/test/reporting/functest/testCase.py
parent9f93b28a66f8782b74252c242481248bd46f816e (diff)
Bug Fix: tranlate build tag into jenkins url
Include HEALTHCHECK Tier in the reporting Change-Id: I4a5a8aeb7564ca35c9199c7925ac344b43270d87 Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'utils/test/reporting/functest/testCase.py')
-rw-r--r--utils/test/reporting/functest/testCase.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/test/reporting/functest/testCase.py b/utils/test/reporting/functest/testCase.py
index df0874e0b..22196c86b 100644
--- a/utils/test/reporting/functest/testCase.py
+++ b/utils/test/reporting/functest/testCase.py
@@ -43,7 +43,8 @@ class TestCase(object):
'parser': 'Parser',
'connection_check': 'Health (connection)',
'api_check': 'Health (api)',
- 'snaps_smoke': 'SNAPS'}
+ 'snaps_smoke': 'SNAPS',
+ 'snaps_health_check': 'Health (dhcp)'}
try:
self.displayName = display_name_matrix[self.name]
except:
@@ -138,7 +139,8 @@ class TestCase(object):
'parser': 'parser-basics',
'connection_check': 'connection_check',
'api_check': 'api_check',
- 'snaps_smoke': 'snaps_smoke'
+ 'snaps_smoke': 'snaps_smoke',
+ 'snaps_health_check': 'snaps_health_check'
}
try:
return test_match_matrix[self.name]