Skip to content

Commit 526147b

Browse files
committed
BUG: Fix test name parsing in find_skipped_tests.py
1 parent ea0215f commit 526147b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

toolshed/find_skipped_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
ANSI_ESCAPE = re.compile(r"\x1B\[[0-9;]*[A-Za-z]")
3838
PYTEST_NODE_ID = re.compile(r"tests/\S+\.py::\S+")
39-
PYTEST_TEST_OUTCOME = re.compile(r"(tests/\S+\.py::\S+(\[.*?\])?)\s+(PASSED|FAILED|ERROR|SKIPPED|XFAIL|XPASS)\b")
39+
PYTEST_TEST_OUTCOME = re.compile(r"(tests/\S+\.py::\S+)\s+(PASSED|FAILED|ERROR|SKIPPED|XFAIL|XPASS)\b")
4040

4141
# GHA log format markers used to identify which test suite is active.
4242
# `gh api` logs: ##[group]<step-name> opens a section, ##[endgroup] closes it.

0 commit comments

Comments
 (0)