summaryrefslogtreecommitdiffstats
path: root/reporting/functest
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-08-17 11:13:16 +0200
committerMorgan Richomme <morgan.richomme@orange.com>2016-08-17 11:13:16 +0200
commit6df337e521ffca7a289ae2ab1bdca6af3e74e0e8 (patch)
tree9f43a0a5e3f64ee2b5c88b6a8925370727059211 /reporting/functest
parentcedf492cf90fdbd5ff553fa79d21fd46517ca5de (diff)
Add parser in automatic reporting
Change-Id: I3d9c09b0da471e03647c09e96ca8b7ec89afb300 Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'reporting/functest')
-rw-r--r--reporting/functest/testCase.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/reporting/functest/testCase.py b/reporting/functest/testCase.py
index d6c1993..a906f0d 100644
--- a/reporting/functest/testCase.py
+++ b/reporting/functest/testCase.py
@@ -39,7 +39,8 @@ class TestCase(object):
'multisite': 'multisite',
'domino': 'domino',
'odl-sfc': 'SFC',
- 'onos_sfc': 'SFC'
+ 'onos_sfc': 'SFC',
+ 'parser':'parser'
}
try:
self.displayName = display_name_matrix[self.name]
@@ -131,7 +132,8 @@ class TestCase(object):
'multisite': 'multisite',
'domino': 'domino-multinode',
'odl-sfc': 'odl-sfc',
- 'onos_sfc': 'onos_sfc'
+ 'onos_sfc': 'onos_sfc',
+ 'parser':'parser-basics'
}
try:
return test_match_matrix[self.name]