From 877b20f2a38ca7af5bff705389e1b1f502d69ecc Mon Sep 17 00:00:00 2001 From: Hamish Downer Date: Thu, 26 Mar 2026 14:25:29 +0000 Subject: [PATCH 1/3] Apply suggested fix to backend/justfile from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- backend/justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/justfile b/backend/justfile index 01a9b476..f1f8c35b 100644 --- a/backend/justfile +++ b/backend/justfile @@ -188,7 +188,7 @@ translate-regen: @echo "🚀 Extracting translatable strings from app and sortition-algorithms library" uv run pybabel extract \ --mapping-file=babel.cfg \ - --keyword=_l -keyword=N_ \ + --keyword=_l --keyword=N_ \ --output-file=translations/messages.pot \ --ignore-dirs=thirdparty \ --ignore-dirs=.venv \ From c741455e4becc0a717a5f94ddeaee46d382557b6 Mon Sep 17 00:00:00 2001 From: Hamish Downer Date: Thu, 26 Mar 2026 14:25:29 +0000 Subject: [PATCH 2/3] Apply suggested fix to backend/justfile from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- backend/justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/justfile b/backend/justfile index f1f8c35b..b5734979 100644 --- a/backend/justfile +++ b/backend/justfile @@ -63,7 +63,7 @@ test-bdd-headless: watch-tests: ls *.py | entr uv run pytest --tb=short --ignore=tests/bdd -# Install the virtual environment, dependencies, an editable copy of this install and install the prek hooks +# Install the virtual environment, dependencies, and an editable copy of this install and install the prek hooks install: @echo "🚀 Creating virtual environment using uv" @uv sync From 50efbbaf23919b09f1893780f3aa1eaf5d66b91c Mon Sep 17 00:00:00 2001 From: Hamish Downer Date: Thu, 26 Mar 2026 14:25:30 +0000 Subject: [PATCH 3/3] Apply suggested fix to backend/justfile from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- backend/justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/justfile b/backend/justfile index b5734979..399c6947 100644 --- a/backend/justfile +++ b/backend/justfile @@ -59,7 +59,7 @@ test-bdd-headless: @echo "🚀 Running BDD tests (headless)" @CI=true uv run python -m pytest tests/bdd/ --verbose --tracing=retain-on-failure -# run the tests when an files change +# run the tests when any files change watch-tests: ls *.py | entr uv run pytest --tb=short --ignore=tests/bdd