From 6ec9752f468a753448e414988070c6b1371fed90 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 16 Oct 2019 11:02:18 -0400 Subject: [PATCH] Slight slowdown on windows / py3.8? --- 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 7be0950..60877cf 100644 --- a/tests/test_streaming.py +++ b/tests/test_streaming.py @@ -215,7 +215,7 @@ def test_a_quadruple_example(time_quad_ex): """This also serves as a kind of "we'd like to be this fast test".""" results, diff = time_quad_ex assert results - this_fast = 5 if platform.system() == 'Windows' else 2.5 + this_fast = 6 if platform.system() == 'Windows' else 2.5 assert diff < this_fast