We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5da9ac commit 28ecff9Copy full SHA for 28ecff9
tests/test_debugging.py
@@ -473,6 +473,11 @@ 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.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
+)
481
def test_set_trace_is_returned_after_pytask_finishes(tmp_path):
482
"""Motivates unconfiguring of pdb.set_trace."""
483
source = f"""
0 commit comments