Skip to content

Commit 849650e

Browse files
TST/CI: Skip batched comm test win / tornado5 (#4166)
Previously we only skipped on Python 3.6. Now we skip on any Python version on Windows with Tornado 5. I can reproduce the issue if people want me to look more, but I don't think this is high priority. Closes #4163.
1 parent 785500b commit 849650e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

distributed/tests/test_batched.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from distributed.utils import All, TimeoutError
1212
from distributed.utils_test import captured_logger
1313
from distributed.protocol import to_serialize
14-
from distributed.compatibility import WINDOWS, PY37, TORNADO6
14+
from distributed.compatibility import WINDOWS, TORNADO6
1515

1616

1717
class EchoServer:
@@ -258,9 +258,7 @@ async def test_serializers():
258258

259259

260260
@pytest.mark.asyncio
261-
@pytest.mark.skipif(
262-
WINDOWS and not PY37 and not TORNADO6, reason="failing on windows, py36, tornado 5."
263-
)
261+
@pytest.mark.skipif(WINDOWS and not TORNADO6, reason="failing on windows, tornado 5.")
264262
async def test_handles_exceptions():
265263
# Ensure that we properly handle exceptions in BatchedSend.
266264
# https://github.com/pangeo-data/pangeo/issues/788

0 commit comments

Comments
 (0)