We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea99722 commit cfa2aa6Copy full SHA for cfa2aa6
testing/test_faulthandler.py
@@ -119,6 +119,10 @@ def test_timeout():
119
120
121
@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
+)
126
@pytest.mark.parametrize("exit_on_timeout", [True, False])
127
def test_timeout_and_exit(pytester: Pytester, exit_on_timeout: bool) -> None:
128
"""Test option to force exit pytest process after a certain timeout."""
0 commit comments