mirror of
https://github.com/correl/tornado-openapi3.git
synced 2024-11-23 11:09:56 +00:00
7 lines
184 B
Python
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"))
|