Auto merge of #373 - untitaker:hypothesis-tolerate-ci-slowness, r=untitaker

Testing: Tolerate slowness in CI

None
This commit is contained in:
Homu 2016-03-11 18:39:30 +09:00
commit 163da71453
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,4 @@
hypothesis>=3
hypothesis>=3.1
pytest
pytest-localserver
pytest-subtesthack

View file

@ -7,7 +7,7 @@ import os
import click_log
from hypothesis import Verbosity, settings
from hypothesis import HealthCheck, Verbosity, settings
import pytest
@ -34,6 +34,7 @@ else:
settings.register_profile("ci", settings(
max_examples=1000,
verbosity=Verbosity.verbose,
suppress_health_check=[HealthCheck.too_slow]
))
settings.register_profile("deterministic", settings(
derandomize=True,