Files
OpenLLM/openllm-python/tests/__init__.py
2023-11-09 12:44:05 -05:00

12 lines
272 B
Python

from __future__ import annotations
import os
from hypothesis import HealthCheck
from hypothesis import settings
settings.register_profile('CI', settings(suppress_health_check=[HealthCheck.too_slow]), deadline=None)
if 'CI' in os.environ:
settings.load_profile('CI')