Skip to content
Merged
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
6 changes: 3 additions & 3 deletions backend/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ 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

# 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
Expand Down Expand Up @@ -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 \
Expand Down
Loading