From 02de39e326c0e90efdc4023c3d8de81fd2213d26 Mon Sep 17 00:00:00 2001 From: Shay Palachy Date: Sat, 13 Jul 2019 15:17:25 +0300 Subject: [PATCH] trying to fix osx and windows tests --- tests/test_pickle_core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_pickle_core.py b/tests/test_pickle_core.py index 896f31b..33ca16f 100644 --- a/tests/test_pickle_core.py +++ b/tests/test_pickle_core.py @@ -253,7 +253,7 @@ def test_bad_cache_file(): target=_calls_bad_cache, kwargs={'res_queue': res_queue, 'trash_cache': False}) thread1.start() - sleep(0.5) + sleep(1.5) thread2.start() thread1.join() thread2.join() @@ -302,7 +302,7 @@ def test_delete_cache_file(): target=_calls_delete_cache, kwargs={'res_queue': res_queue, 'del_cache': False}) thread1.start() - sleep(0.5) + sleep(1.5) thread2.start() thread1.join() thread2.join()