From 83dc0f182843b46792e9e5f5eba3bfd05dee3bc3 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Thu, 30 May 2024 16:15:56 -0400 Subject: [PATCH] Revert "Do not even submit test suites that are skipped completely." This reverts commit e25b61b5c2e8c0451558d022a759290d14c1b916. --- run_project_tests.py | 1 - 1 file changed, 1 deletion(-) diff --git a/run_project_tests.py b/run_project_tests.py index 974273fc790e..67f4c9728dea 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -1235,7 +1235,6 @@ 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'])]