Skip to content

Commit 28ecff9

Browse files
committed
Fix.2
1 parent e5da9ac commit 28ecff9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/test_debugging.py

+5
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,11 @@ 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.xfail(
477+
condition=sys.version_info >= (3, 13) and sys.platform == "darwin",
478+
reason="Can't debug since the debugger hangs.",
479+
strict=True,
480+
)
476481
def test_set_trace_is_returned_after_pytask_finishes(tmp_path):
477482
"""Motivates unconfiguring of pdb.set_trace."""
478483
source = f"""

0 commit comments

Comments
 (0)