Skip to content

Commit b5ef66e

Browse files
authored
Skip TLS functional tests (#9061)
1 parent 905604d commit b5ef66e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

distributed/tests/test_tls_functional.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@
77

88
import asyncio
99

10+
import pytest
1011
from tlz import merge
1112

1213
from distributed import Client, Nanny, Queue, Scheduler, Worker, wait, worker_client
14+
from distributed.compatibility import LINUX
1315
from distributed.core import Status
1416
from distributed.metrics import time
1517
from distributed.utils_test import (
@@ -89,6 +91,7 @@ async def test_scatter(c, s, a, b):
8991
assert yy == [20]
9092

9193

94+
@pytest.mark.skipif(LINUX, reason="https://github.com/dask/distributed/issues/9052")
9295
@gen_tls_cluster(client=True, Worker=Nanny)
9396
async def test_nanny(c, s, a, b):
9497
assert s.address.startswith("tls://")
@@ -188,6 +191,7 @@ def mysum():
188191
assert result == 30 * 29
189192

190193

194+
@pytest.mark.skipif(LINUX, reason="https://github.com/dask/distributed/issues/9052")
191195
@gen_tls_cluster(client=True, Worker=Nanny)
192196
async def test_retire_workers(c, s, a, b):
193197
assert set(s.workers) == {a.worker_address, b.worker_address}

0 commit comments

Comments
 (0)