diff --git a/tests/test_hypothesis.py b/tests/test_hypothesis.py index 60e5a64..6ecbc49 100644 --- a/tests/test_hypothesis.py +++ b/tests/test_hypothesis.py @@ -9,22 +9,12 @@ import cairo pytest.importorskip("hypothesis") -from hypothesis import given, strategies, assume, settings +from hypothesis import given, strategies, assume from hypothesis.strategies import floats, integers from .hypothesis_fspaths import fspaths -if "CI" in os.environ: - # CI can be slow, so be patient - # Also we can run more tests there - settings.register_profile( - "ci", - deadline=settings.default.deadline * 10, - max_examples=settings.default.max_examples * 5) - settings.load_profile("ci") - - @pytest.fixture(scope='module') def tempdir_path(): dir_ = tempfile.mkdtemp()