Skip to content

Commit

Permalink
Merge pull request #127 from coldav/colin/extend_cts_parsing_for_no_t…
Browse files Browse the repository at this point in the history
…ests_run

Extended the parsing on our test runner to catch "No tests ran"
  • Loading branch information
coldav authored Sep 13, 2023
2 parents 0260608 + 98a9c11 commit 4964985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/testing/city_runner/cts.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def analyze_process_output(self):
fail_single_pattern = re.compile(b"^(FAILED .+\.|.+FAILED\.?)$")
fail_pair_pattern = re.compile(b"^FAILED (\d+) of (\d+) tests\.$")
skipped_pattern = re.compile(
b"(.*Skipping test\.+|skipping|SKIPPED.+)$")
b"(.*Skipping test\.+|skipping|SKIPPED.+|No tests ran)$")
zerorun_pattern = re.compile(b"^Tests completed: 0$")
doubles_unsupported_pattern = re.compile(b".*Has Double\? NO$")
extension_unsupported_pattern = re.compile(
Expand Down

0 comments on commit 4964985

Please sign in to comment.