Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def pytest_collection_modifyitems(session, config, items) -> None: # noqa: ARG0


skip_if_deadlock = pytest.mark.skipif(
(sys.version_info[:2] in [(3, 12), (3, 13)] and sys.platform == "win32")
(sys.version_info[:2] in [(3, 12), (3, 13), (3, 14)] and sys.platform == "win32")
or (sys.version_info[:2] == (3, 13) and sys.platform == "linux"),
reason="Deadlock in loky/backend/resource_tracker.py, line 181, maybe related to https://github.com/joblib/loky/pull/450",
)
4 changes: 3 additions & 1 deletion tests/test_jupyter/test_functional_interface.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@
"metadata": {},
"outputs": [],
"source": [
"session = pytask.build(tasks=[create_file, create_text], n_workers=2)\n",
"session = pytask.build(\n",
" tasks=[create_file, create_text], n_workers=2, parallel_backend=\"processes\"\n",
")\n",
"assert session.exit_code == ExitCode.OK"
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@
"metadata": {},
"outputs": [],
"source": [
"session = pytask.build(tasks=[create_file, create_text], n_workers=2)\n",
"session = pytask.build(\n",
" tasks=[create_file, create_text], n_workers=2, parallel_backend=\"processes\"\n",
")\n",
"assert session.exit_code == ExitCode.OK"
]
}
Expand Down