Spaces:
Sleeping
Sleeping
| import pytest | |
| from fastapi.testclient import TestClient | |
| from app import app | |
| def client(): | |
| with TestClient(app) as c: | |
| yield c | |
| import pytest | |
| from fastapi.testclient import TestClient | |
| from app import app | |
| def client(): | |
| with TestClient(app) as c: | |
| yield c | |