Skip to content

Commit 9addcb8

Browse files
authored
disable test of runner using distributed (#253)
It seems to fail a lot on Windows.
1 parent 0015410 commit 9addcb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adaptive/tests/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def test_ipyparallel_executor(ipyparallel_executor):
120120
@flaky.flaky(max_runs=5)
121121
@pytest.mark.timeout(60)
122122
@pytest.mark.skipif(not with_distributed, reason="dask.distributed is not installed")
123-
@pytest.mark.skipif(sys.version_info[:2] == (3, 8), reason="XXX: seems to always fail")
123+
@pytest.mark.skipif(os.name == "nt", reason="XXX: seems to always fail")
124124
def test_distributed_executor():
125125
from distributed import Client
126126

0 commit comments

Comments
 (0)