зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1656410 - Fix py3 sort failure in test-info report --show-manifests; r=bc
Differential Revision: https://phabricator.services.mozilla.com/D85619
This commit is contained in:
Родитель
583e1cc437
Коммит
d4f33f633f
|
@ -902,7 +902,7 @@ class TestInfoReport(TestInfo):
|
||||||
if t.get('skip-if'):
|
if t.get('skip-if'):
|
||||||
manifest_info['skipped'] += 1
|
manifest_info['skipped'] += 1
|
||||||
for key in by_component['manifests']:
|
for key in by_component['manifests']:
|
||||||
by_component['manifests'][key].sort()
|
by_component['manifests'][key].sort(key=lambda k: k['manifest'])
|
||||||
|
|
||||||
if show_tests:
|
if show_tests:
|
||||||
by_component['tests'] = {}
|
by_component['tests'] = {}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче