tornado-openapi3/tests/conftest.py
Correl Roush b69f690d50 Remove the ci Hypothesis profile
It is slow and there's no real benefit from it at this time.
2020-12-04 23:34:57 -05:00

7 lines
184 B
Python

import os
from hypothesis import settings
settings(deadline=None)
settings.register_profile("dev", max_examples=10)
settings.load_profile(os.getenv("HYPOTHESIS_PROFILE", "default"))