Skip to content

Skip for bpo-30064 until 3.8.2 #346

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

Merged
merged 1 commit into from
May 25, 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
9 changes: 5 additions & 4 deletions tests/test_sockets.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,11 @@ def test_socket_sync_remove_and_immediately_close(self):
self.loop.run_until_complete(asyncio.sleep(0.01))

def test_sock_cancel_add_reader_race(self):
if self.is_asyncio_loop() and sys.version_info[:3] == (3, 8, 0):
# asyncio 3.8.0 seems to have a regression;
# tracked in https://bugs.python.org/issue30064
raise unittest.SkipTest()
if self.is_asyncio_loop():
if (3, 8, 2) >= sys.version_info[:3] >= (3, 8, 0):
# asyncio 3.8.0 seems to have a regression;
# tracked in https://bugs.python.org/issue30064
raise unittest.SkipTest()

srv_sock_conn = None

Expand Down