Skip to content

Commit 62157b1

Browse files
committed
FIX linting
1 parent a31fb82 commit 62157b1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/test_reusable_executor.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -375,10 +375,7 @@ def test_crash_races(self, n_proc):
375375
"""Test the race conditions in reusable_executor crash handling"""
376376
pytest.importorskip("psutil") # required for kill_friend & co
377377

378-
if (
379-
sys.platform == "win32"
380-
and n_proc > 5
381-
):
378+
if sys.platform == "win32" and n_proc > 5:
382379
pytest.skip(
383380
"On win32, the paging size can be too small to import numpy "
384381
"multiple times in the sub-processes (imported when loading "

0 commit comments

Comments
 (0)