diff options
-rw-r--r-- | docs/release/release-notes/index.rst | 2 | ||||
-rw-r--r-- | dovetail/report.py | 2 | ||||
-rw-r--r-- | dovetail/tests/unit/test_report.py | 17 |
3 files changed, 13 insertions, 8 deletions
diff --git a/docs/release/release-notes/index.rst b/docs/release/release-notes/index.rst index 8cfbdfe7..59c91baf 100644 --- a/docs/release/release-notes/index.rst +++ b/docs/release/release-notes/index.rst @@ -274,4 +274,4 @@ Useful Links - Dovetail IRC Channel: #opnfv-dovetail - - `Dovetail Test Configuration <https://git.opnfv.org/dovetail/tree/etc/compliance/ovp.2019.0x.yaml>`_ + - `Dovetail Test Configuration <https://git.opnfv.org/dovetail/tree/etc/compliance/ovp.2019.12.yaml>`_ diff --git a/dovetail/report.py b/dovetail/report.py index 9523d388..ed3f942b 100644 --- a/dovetail/report.py +++ b/dovetail/report.py @@ -336,7 +336,7 @@ class FunctestCrawler(Crawler): def get_rally_details(self, data): try: - t_details = data['details'][0]['details'] + t_details = data['details']['modules'][0]['details'] tests = len(t_details['success']) + len(t_details['failures']) details = { 'tests': tests, diff --git a/dovetail/tests/unit/test_report.py b/dovetail/tests/unit/test_report.py index 69cde0d5..41d70d2f 100644 --- a/dovetail/tests/unit/test_report.py +++ b/dovetail/tests/unit/test_report.py @@ -741,12 +741,17 @@ class ReportTesting(unittest.TestCase): 'criteria': 'criteria', 'start_date': 'start_date', 'stop_date': 'stop_date', - 'details': [{ - 'details': { - 'success': ['subt_a'], - 'failures': ['subt_b', 'subt_c'] - } - }] + 'details': { + 'modules': [ + { + 'details': { + 'success': ['subt_a'], + 'failures': ['subt_b', 'subt_c'] + }, + 'module': 'module' + } + ] + } } mock_json.loads.return_value = data_dict |