petter2025's picture
Upload folder using huggingface_hub
afa4de7 verified
raw
history blame
195 Bytes
from fastapi.testclient import TestClient
from app.main import app
def test_lifespan():
client = TestClient(app)
response = client.get("/health")
assert response.status_code == 200