Skip to content

Commit

Permalink
show matched
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurZucker committed Apr 28, 2024
1 parent fc38bcb commit 6b1f4a2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion .circleci/parse_test_outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ def parse_pytest_output(file_path):
match = re.match(r'^SKIPPED \[(\d+)\] (tests/[^/]+/[^:]+):(\d+): (.*)$', line)
if match:
skipped_count += 1
print(match.groups())
_, test_file, test_line, reason = match.groups()
skipped_tests[reason] = skipped_tests.get(reason, []) + [(test_file, test_line)]
print("Number of skipped tests:", skipped_count)
Expand Down

0 comments on commit 6b1f4a2

Please sign in to comment.