diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-08-17 11:22:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-08-17 11:22:59 +0000 |
commit | 61f1cb13f81abef81a10e98913ededdb85a4e92e (patch) | |
tree | 765ff58b2d0e1a6c117021cbfd9f12bbd3d17ba6 | |
parent | 3b638b533d06b813e1555e80c80473b22909a123 (diff) | |
parent | ca9e943e784a401d77257e987ed8499bc9d1f691 (diff) |
Merge "Add parser in automatic reporting"
-rw-r--r-- | utils/test/reporting/functest/testCase.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/test/reporting/functest/testCase.py b/utils/test/reporting/functest/testCase.py index d6c19930f..a906f0da8 100644 --- a/utils/test/reporting/functest/testCase.py +++ b/utils/test/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] |