mirror of
https://github.com/imartinez/privateGPT.git
synced 2026-07-17 11:29:56 +00:00
7 lines
242 B
Python
7 lines
242 B
Python
from fastapi.testclient import TestClient
|
|
|
|
|
|
def test_default_does_not_require_auth(test_client: TestClient) -> None:
|
|
response_before = test_client.get("/v1/artifacts/list?collection=default")
|
|
assert response_before.status_code == 200
|