skipIf fix
This commit is contained in:
parent
ffea76cdd5
commit
8d164dfed3
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ class StreamControllerTestCase(AsyncioTestCase):
|
||||||
|
|
||||||
class TestEventQueuePublisher(AsyncioTestCase):
|
class TestEventQueuePublisher(AsyncioTestCase):
|
||||||
|
|
||||||
@unittest.skipIf("linux" not in sys.platform)
|
@unittest.skipIf("linux" not in sys.platform, "unreliable everywhere except linux")
|
||||||
async def test_event_buffering_avoids_overloading_asyncio(self):
|
async def test_event_buffering_avoids_overloading_asyncio(self):
|
||||||
threads = 3
|
threads = 3
|
||||||
generate_events = 3000
|
generate_events = 3000
|
||||||
|
|
Loading…
Reference in a new issue