We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a34ba6 commit 24cbce1Copy full SHA for 24cbce1
tests/test_debugging.py
@@ -473,9 +473,10 @@ def helper():
473
@pytest.mark.end_to_end
474
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
475
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
476
-@pytest.mark.skipif(
+@pytest.mark.xfail(
477
sys.platform == "darwin" and sys.version_info == (3, 13),
478
reason="Test skipped on macOS for Python 3.13. Debug when released.",
479
+ strict=True,
480
)
481
def test_set_trace_is_returned_after_pytask_finishes(tmp_path):
482
"""Motivates unconfiguring of pdb.set_trace."""
0 commit comments