summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index ddacc3db1..c834e62a0 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -11,6 +11,7 @@ import ssl
import pytest
import hypothesis
+import hypothesis.database
pytest.register_assert_rewrite('helpers')
@@ -33,10 +34,19 @@ _qute_scheme_handler = None
# Set hypothesis settings
+hypotheses_optional_kwargs = {}
+if "HYPOTHESIS_EXAMPLES_DIR" in os.environ:
+ hypotheses_optional_kwargs[
+ "database"
+ ] = hypothesis.database.DirectoryBasedExampleDatabase(
+ os.environ["HYPOTHESIS_EXAMPLES_DIR"]
+ )
+
hypothesis.settings.register_profile(
'default', hypothesis.settings(
deadline=600,
suppress_health_check=[hypothesis.HealthCheck.function_scoped_fixture],
+ **hypotheses_optional_kwargs,
)
)
hypothesis.settings.register_profile(
@@ -45,7 +55,8 @@ hypothesis.settings.register_profile(
suppress_health_check=[
hypothesis.HealthCheck.function_scoped_fixture,
hypothesis.HealthCheck.too_slow
- ]
+ ],
+ **hypotheses_optional_kwargs,
)
)
hypothesis.settings.load_profile('ci' if testutils.ON_CI else 'default')