From a7c87f7335991747fef1f5766e1be066522b2d27 Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Thu, 15 Jan 2026 10:11:43 -0800 Subject: [PATCH] Document showTestCodeLenses --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 75b244f..ecf6525 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ A VS Code extension for FastAPI development that discovers and displays your API | Setting | Description | Default | |---------|-------------|---------| | `fastapi.entryPoint` | Path to the main FastAPI application file (e.g., `src/main.py`). If not set, the extension searches common locations: `main.py`, `app/main.py`, `api/main.py`, `src/main.py`, `backend/app/main.py`. | `""` (auto-detect) | +| `fastapi.showTestCodeLenses` | Show CodeLens links above test client calls (e.g., `client.get('/items')`) to navigate to the corresponding route definition. | `true` | **Note:** Currently the extension discovers one FastAPI app per workspace folder. If you have multiple apps, use separate workspace folders or configure `fastapi.entryPoint` to point to your primary app.