Skip to content

Commit c052aee

Browse files
committed
Skip test.
1 parent 878c16b commit c052aee

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/test_execute.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from __future__ import annotations
22

3+
import sys
34
import textwrap
45
from time import time
56

@@ -76,6 +77,11 @@ def task_2(path: Annotated[Path, Product] = Path("out_2.txt")):
7677

7778

7879
@pytest.mark.parametrize("parallel_backend", _IMPLEMENTED_BACKENDS)
80+
@pytest.mark.skipif(
81+
(sys.version_info[:2] == (3, 12) and sys.platform == "win32")
82+
or (sys.version_info[:2] == (3, 13) and sys.platform == "linux"),
83+
reason="Deadlock in loky/backend/resource_tracker.py, line 181, maybe related to https://github.com/joblib/loky/pull/450/",
84+
)
7985
def test_stop_execution_when_max_failures_is_reached(tmp_path, parallel_backend):
8086
source = """
8187
import time

0 commit comments

Comments
 (0)