Skip to content

Commit 44a3188

Browse files
committed
REvert escapes.
1 parent b33d1cd commit 44a3188

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

tests/test_debugging.py

-4
Original file line numberDiff line numberDiff line change
@@ -473,10 +473,6 @@ 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(
477-
sys.platform == "darwin" and sys.version_info == (3, 13),
478-
reason="Test skipped on macOS for Python 3.13. Debug when released.",
479-
)
480476
def test_set_trace_is_returned_after_pytask_finishes(tmp_path):
481477
"""Motivates unconfiguring of pdb.set_trace."""
482478
source = f"""

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ commands =
2121
[testenv:test]
2222
extras = test
2323
deps =
24-
nbmake;not (platform_system == "Windows" and python_version == "3.13")
24+
nbmake
2525
pygraphviz;platform_system == "Linux"
2626
commands =
2727
pytest --nbmake {posargs}

0 commit comments

Comments
 (0)