From 0876da755be8c524a5855d63f6ff15848225b387 Mon Sep 17 00:00:00 2001 From: Stuart Cook Date: Thu, 3 Jun 2021 19:33:17 +1000 Subject: [PATCH] Avoid a flaky warning caused by multi-threaded DB access --- hypothesis-python/tests/nocover/test_recursive.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hypothesis-python/tests/nocover/test_recursive.py b/hypothesis-python/tests/nocover/test_recursive.py index 67b07983c6..8b3ae3b9b2 100644 --- a/hypothesis-python/tests/nocover/test_recursive.py +++ b/hypothesis-python/tests/nocover/test_recursive.py @@ -137,6 +137,7 @@ def test_drawing_from_recursive_strategy_is_thread_safe(): errors = [] + @settings(database=None) @given(data=st.data()) def test(data): try: