mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-01-03 04:59:01 -05:00
8 lines
246 B
Python
8 lines
246 B
Python
from __future__ import annotations
|
|
import os
|
|
|
|
from hypothesis import HealthCheck, settings
|
|
settings.register_profile("CI", settings(suppress_health_check=[HealthCheck.too_slow]), deadline=None)
|
|
|
|
if "CI" in os.environ: settings.load_profile("CI")
|