Skip to content

Commit

Permalink
Remove a CI exception for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed Nov 18, 2023
1 parent b6b8cb4 commit 99c3d6c
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions tests/test_qeventloop.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,14 +555,6 @@ def test_regression_bug13(loop, sock_pair):
c_sock, s_sock = sock_pair
client_done, server_done = asyncio.Future(), asyncio.Future()

if os.name == "nt":
# On Windows, `loop.add_reader` and `loop.add_writer`
# are not supported by Python's `asyncio` due to platform limitations.
# Though `qasync` does provide those methods on Windows,
# it doesn't guarantee safety against race conditions like on Unix.
# https://docs.python.org/3/library/asyncio-platforms.html
return

async def server_coro():
s_reader, s_writer = await asyncio.open_connection(sock=s_sock)

Expand Down

0 comments on commit 99c3d6c

Please sign in to comment.