We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26e3ed4 commit 6dc2a91Copy full SHA for 6dc2a91
1 file changed
tests/utils/test_parallelize.py
@@ -68,20 +68,20 @@ def func(request) -> Callable:
68
69
70
@pytest.mark.flaky(max_runs=5)
71
-@pytest.mark.timeout(2)
+@pytest.mark.timeout(5)
72
@pytest.mark.parametrize(
73
"backend",
74
[
75
pytest.param(
76
"threading",
77
marks=pytest.mark.skipif(
78
- os.environ.get("CI") == "true", reason="Only testing 'loky' backend in CI environment"
+ os.environ.get("CI") == "true", reason="Not testing 'threading' backend in CI environment"
79
),
80
81
82
"multiprocessing",
83
84
+ os.environ.get("CI") == "true", reason="Not testing 'multiprocessing' backend in CI environment"
85
86
87
"loky",
0 commit comments