Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .devcontainer/setup_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ command -v uv >/dev/null 2>&1 || pip install uv
[ -d .venv ] || uv venv
source .venv/bin/activate

# Install both backend extras so the devcontainer can exercise either connection path.
uv sync --all-extras
pre-commit install
# Install both backend extras so the devcontainer can exercise either connection path,
# plus the dev dependency group (pre-commit, pytest, etc.). Groups are installed
# explicitly rather than relying on uv's default-group behaviour, which varies by version.
uv sync --all-extras --group dev
uv run pre-commit install