Skip to content

Commit 24cbce1

Browse files
committed
FIx.
1 parent 5a34ba6 commit 24cbce1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_debugging.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -473,9 +473,10 @@ def helper():
473473
@pytest.mark.end_to_end
474474
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
475475
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
476-
@pytest.mark.skipif(
476+
@pytest.mark.xfail(
477477
sys.platform == "darwin" and sys.version_info == (3, 13),
478478
reason="Test skipped on macOS for Python 3.13. Debug when released.",
479+
strict=True,
479480
)
480481
def test_set_trace_is_returned_after_pytask_finishes(tmp_path):
481482
"""Motivates unconfiguring of pdb.set_trace."""

0 commit comments

Comments
 (0)