diff options
author | 2016-11-16 18:16:43 +0100 | |
---|---|---|
committer | 2016-11-17 09:27:08 +0100 | |
commit | c850beb64083c730301188ade4cbba0f2a329a92 (patch) | |
tree | 19b241b8a85c463744cff8e4e40c8b4e3764475b /utils/test/reporting/functest/testCase.py | |
parent | 483081b7fb0cf5d7dec5ee1d6ff0bddc387a59dc (diff) |
Refactor reporting dir
- dockerization
- create util function for all the test projects
- create a common config files
- add unit tests
- pep8
JIRA: RELENG-162
Change-Id: Ib209be4233084100ff238a7aeb2843ccc24a6f1e
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.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/test/reporting/functest/testCase.py b/utils/test/reporting/functest/testCase.py index a906f0da8..64c7b9a7c 100644 --- a/utils/test/reporting/functest/testCase.py +++ b/utils/test/reporting/functest/testCase.py @@ -40,7 +40,7 @@ class TestCase(object): 'domino': 'domino', 'odl-sfc': 'SFC', 'onos_sfc': 'SFC', - 'parser':'parser' + 'parser': 'parser' } try: self.displayName = display_name_matrix[self.name] @@ -133,7 +133,7 @@ class TestCase(object): 'domino': 'domino-multinode', 'odl-sfc': 'odl-sfc', 'onos_sfc': 'onos_sfc', - 'parser':'parser-basics' + 'parser': 'parser-basics' } try: return test_match_matrix[self.name] |