| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Incorrectly documented as "Get a specific user by username (email)". Changed to "Get a specific user by id".
Fixed read_user_by_id docstring
|
Thanks! Good catch. |
Sorry, something went wrong.
Fix incorrectly documented as "Get a specific user by username (email)". Changed to "Get a specific user by id".
Run fastapi#4 confirmed the backend now starts healthy (circular-import fix worked); the remaining failures were test-harness wiring, not app bugs: - compose.test.yml: mount ./backend/tests into the backend container. The production image only copies ./backend/app, so the previous run failed with "file or directory not found: tests/integration/". - conftest.py: read API_BASE_URL (set by the CI exec step and used by the Playwright suite) before the older INTEGRATION_API_BASE name. The old default pointed at host port 8001, unreachable from inside the container where the backend listens on 8000. - Align superuser credentials: pin FIRST_SUPERUSER_PASSWORD in .env to the value the tests log in with (the .env.example placeholder is CHANGE_THIS, but the Playwright step used 'changethis'); drive both test steps from shared job-level env. Match the conftest defaults too. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JuJaTjEPCdk39mhYFaGkPb
| Back | FazBrowse Home | New Git URL |
Changed doctring from "Get a specific user by username (email)" to "Get a specific user by id". Not the biggest PR in the world ;)