Skip to content

Commit 558da29

Browse files
author
Hugo Osvaldo Barrera
committed
Use the syntax hypothesis accepts
1 parent 83fe7d2 commit 558da29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ def benchmark():
2727
del pytest_benchmark
2828

2929

30-
settings.suppress_health_check = [HealthCheck.too_slow]
31-
3230
settings.register_profile("ci", settings(
3331
max_examples=1000,
3432
verbosity=Verbosity.verbose,
33+
suppress_health_check=[HealthCheck.too_slow],
3534
))
3635
settings.register_profile("deterministic", settings(
3736
derandomize=True,
38-
perform_health_check=False
37+
perform_health_check=False,
38+
suppress_health_check=[HealthCheck.too_slow],
3939
))
4040

4141
if os.environ.get('DETERMINISTIC_TESTS', 'false').lower() == 'true':

0 commit comments

Comments
 (0)