Skip to content

Commit

Permalink
Fix.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasraabe committed Nov 2, 2024
1 parent e5da9ac commit 28ecff9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_debugging.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,11 @@ def helper():
@pytest.mark.end_to_end
@pytest.mark.skipif(not IS_PEXPECT_INSTALLED, reason="pexpect is not installed.")
@pytest.mark.skipif(sys.platform == "win32", reason="pexpect cannot spawn on Windows.")
@pytest.mark.xfail(
condition=sys.version_info >= (3, 13) and sys.platform == "darwin",
reason="Can't debug since the debugger hangs.",
strict=True,
)
def test_set_trace_is_returned_after_pytask_finishes(tmp_path):
"""Motivates unconfiguring of pdb.set_trace."""
source = f"""
Expand Down

0 comments on commit 28ecff9

Please sign in to comment.