(dep1: str = Depends(get_header), dep2: str = Depends(get_something_else))
| 15 | |
| 16 | @app.get("/") |
| 17 | def get_deps(dep1: str = Depends(get_header), dep2: str = Depends(get_something_else)): |
| 18 | return {"dep1": dep1, "dep2": dep2} |
| 19 | |
| 20 | |
| 21 | client = TestClient(app) |
nothing calls this directly
no test coverage detected
searching dependent graphs…