From 15edcc622d9c9d6a64939d452462e92c798ec15a Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 13 Oct 2020 15:13:24 -0400 Subject: [PATCH] Skip it on windows too --- tests/test_streaming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_streaming.py b/tests/test_streaming.py index 98855e0..919b278 100644 --- a/tests/test_streaming.py +++ b/tests/test_streaming.py @@ -203,7 +203,7 @@ async def cancel_after(wait): @pytest.fixture(scope='module') def time_quad_ex(arb_addr, ci_env, spawn_backend): - if spawn_backend == 'mp' and (platform.system() != 'Windows'): + if spawn_backend == 'mp': """no idea but the mp *nix runs are flaking out here often... """ pytest.skip("Test is too flaky on mp in CI")