Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions testing/test_xfail_behavior.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
FAILED_WORD = "FAILED" if IS_PYTEST4_PLUS else "FAIL"
PYTEST_GTE_7_2 = hasattr(pytest, "version_tuple") and pytest.version_tuple >= (7, 2) # type: ignore[attr-defined]
PYTEST_GTE_8_0 = hasattr(pytest, "version_tuple") and pytest.version_tuple >= (8, 0) # type: ignore[attr-defined]
PYTEST_GTE_9_0 = hasattr(pytest, "version_tuple") and pytest.version_tuple >= (9, 0) # type: ignore[attr-defined]

pytestmark = pytest.mark.skipif( # pylint: disable=invalid-name
not hasattr(os, "fork"), # noqa: WPS421
Expand Down Expand Up @@ -72,6 +73,8 @@ def test_xfail(is_crashing, is_strict, testdir):
)
if expected_lowercase == "xfailed" and PYTEST_GTE_7_2:
short_test_summary += " - " + reason_string
if expected_lowercase == "failed" and PYTEST_GTE_9_0:
short_test_summary += " - [XPASS(strict)] The process gets termin..."
total_summary_line = f"*==== 1 {expected_lowercase!s} in 0.*s* ====*"

expected_lines = (
Expand Down
Loading