Skip to content

Commit 3553f8a

Browse files
committed
Skip test on recent Pythons
1 parent 4614df7 commit 3553f8a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

cuda_core/tests/test_rlcompleter_patch.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ def test_patched_completion_succeeds_on_non_ipc_resource():
9696
assert "allocation_handle: True" in result.stdout, result.stdout
9797

9898

99-
@pytest.mark.skipif(sys.version_info >= (3, 15), reason="Python 3.15 fixed the rlcompleter bug upstream")
99+
@pytest.mark.skipif(
100+
sys.version_info >= (3, 13), reason="Python 3.13.13, 3.14.6 and 3.15 fixed the rlcompleter bug upstream"
101+
)
100102
def test_opt_out_env_var_disables_patch_even_when_interactive():
101103
"""`CUDA_CORE_DONT_FIX_TAB_COMPLETION=1` must short-circuit before the
102104
interactive check, so the bug reproduces again even under PYTHONINSPECT."""

0 commit comments

Comments
 (0)