Skip to content

Commit cfa2aa6

Browse files
committed
Actually skip the new test on ubuntu-py314
1 parent ea99722 commit cfa2aa6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

testing/test_faulthandler.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,10 @@ def test_timeout():
119119

120120

121121
@pytest.mark.keep_ci_var
122+
@pytest.mark.skipif(
123+
"CI" in os.environ and sys.platform == "linux" and sys.version_info >= (3, 14),
124+
reason="sometimes crashes on CI because of truncated outputs (#7022)",
125+
)
122126
@pytest.mark.parametrize("exit_on_timeout", [True, False])
123127
def test_timeout_and_exit(pytester: Pytester, exit_on_timeout: bool) -> None:
124128
"""Test option to force exit pytest process after a certain timeout."""

0 commit comments

Comments
 (0)