Do not even submit test suites that are skipped completely.

pull/13080/head
Jussi Pakkanen 8 months ago
parent db1b8947f0
commit e25b61b5c2
  1. 1
      run_project_tests.py

@ -1235,6 +1235,7 @@ def _run_tests(all_tests: T.List[T.Tuple[str, T.List[TestDef], bool]],
current_suite = ET.SubElement(junit_root, 'testsuite', {'name': name, 'tests': str(len(test_cases))})
if skipped:
futures += [LogRunFuture(['\n', bold(f'Not running {name} tests.'), '\n'])]
continue
else:
futures += [LogRunFuture(['\n', bold(f'Running {name} tests.'), '\n'])]

Loading…
Cancel
Save