Skip to content

Commit 8e604a0

Browse files
Skip hanging SSH tests on Windows (#9115)
1 parent d548dae commit 8e604a0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

distributed/deploy/tests/test_old_ssh.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from __future__ import annotations
22

3+
import sys
34
from time import sleep
45

56
import pytest
@@ -10,6 +11,11 @@
1011
from distributed.deploy.old_ssh import SSHCluster
1112
from distributed.metrics import time
1213

14+
# https://github.com/dask/distributed/issues/9114
15+
pytestmark = pytest.mark.skipif(
16+
sys.platform == "win32", reason="Hangs on Windows in CI"
17+
)
18+
1319

1420
@pytest.mark.avoid_ci
1521
def test_cluster(loop):

0 commit comments

Comments
 (0)