From 88df14a7240dcbc7f82291202f0fadcfc8a0ce5f Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Thu, 10 Mar 2016 13:33:10 +0100 Subject: [PATCH] Testing: Tolerate slowness in CI --- test-requirements.txt | 2 +- tests/conftest.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test-requirements.txt b/test-requirements.txt index 1dd7725..010a782 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,4 +1,4 @@ -hypothesis>=3 +hypothesis>=3.1 pytest pytest-localserver pytest-subtesthack diff --git a/tests/conftest.py b/tests/conftest.py index e9de77a..8ddd2b4 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -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,