tornado-openapi3/tests/conftest.py
Correl Roush 3704bfab49 Configure Hypothesis profiles
Add a ci profile using more examples for automated testing and a dev
profile for rapid local testing.
2020-12-04 22:44:22 -05:00

9 lines
261 B
Python

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