| import pytest | |
| from fastapi.testclient import TestClient | |
| from main import app | |
| def client(): | |
| """TestClient that runs the full app lifespan (loads SAT + ONNX models once).""" | |
| with TestClient(app) as c: | |
| yield c | |
| import pytest | |
| from fastapi.testclient import TestClient | |
| from main import app | |
| def client(): | |
| """TestClient that runs the full app lifespan (loads SAT + ONNX models once).""" | |
| with TestClient(app) as c: | |
| yield c | |