8000 Pause server by mayfield · Pull Request #448 · python/asyncio · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Nov 23, 2017. It is now read-only.

Pause server #448

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Skip Server pause tests with Proactor event loop
  • Loading branch information
mayfield committed Oct 19, 2016
commit 1a38d87b6c8a4172b18001d293c5b1b17a6e87ae
6 changes: 6 additions & 0 deletions tests/test_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -2265,6 +2265,12 @@ def test_create_datagram_endpoint(self):

def test_remove_fds_after_closing(self):
raise unittest.SkipTest("IocpEventLoop does not have add_reader()")

def test_create_server_max_connections(self):
raise unittest.SkipTest("IocpEventLoop incompatible with max_connections")

def test_create_server_pause_resume(self):
raise unittest.SkipTest("IocpEventLoop incompatible with Server pause")
else:
from asyncio import selectors

Expand Down
0