Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TST/CI: Skip batched comm test win / tornado5 #4166

Merged
merged 1 commit into from
Oct 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions distributed/tests/test_batched.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from distributed.utils import All, TimeoutError
from distributed.utils_test import captured_logger
from distributed.protocol import to_serialize
from distributed.compatibility import WINDOWS, PY37, TORNADO6
from distributed.compatibility import WINDOWS, TORNADO6


class EchoServer:
Expand Down Expand Up @@ -258,9 +258,7 @@ async def test_serializers():


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