From 8d164dfed3818e29ed44c395496d37e6d5fc7842 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 20 Jul 2020 23:38:21 -0400 Subject: [PATCH] skipIf fix --- tests/unit/test_event_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_event_controller.py b/tests/unit/test_event_controller.py index 6e083cd53..eded040ba 100644 --- a/tests/unit/test_event_controller.py +++ b/tests/unit/test_event_controller.py @@ -92,7 +92,7 @@ class StreamControllerTestCase(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): threads = 3 generate_events = 3000