Spaces:
Sleeping
Sleeping
File size: 220 Bytes
bf6d237 |
1 2 3 4 5 6 7 |
from fastapi.testclient import TestClient
def test_default_does_not_require_auth(test_client: TestClient) -> None:
response_before = test_client.get("/v1/ingest/list")
assert response_before.status_code == 200
|