Skip to content

Commit 20fc10f

Browse files
committed
Add last skipif.
1 parent 33eaabf commit 20fc10f

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

tests/test_remote.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
import pickle
2+
import sys
23
import textwrap
34

45
import pytest
56
from pytask import ExitCode
67
from pytask import cli
78

9+
pytestmark = pytest.mark.skipif(
10+
(sys.version_info[:2] == (3, 12) and sys.platform == "win32")
11+
or (sys.version_info[:2] == (3, 13) and sys.platform == "linux"),
12+
reason="Deadlock in loky/backend/resource_tracker.py, line 181, maybe related to https://github.com/joblib/loky/pull/450",
13+
)
14+
815

916
@pytest.fixture(autouse=True)
1017
def _setup_remote_backend(tmp_path):

0 commit comments

Comments
 (0)