Skip to content

Commit

Permalink
added poetry run to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
smcmurtry committed Jan 24, 2025
1 parent f9cdc39 commit ede3865
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ generate-version-file: ## Generates the app version file

.PHONY: test
test:
./scripts/run_tests.sh
poetry run ./scripts/run_tests.sh

.PHONY: babel-test
test-translations: babel
Expand Down Expand Up @@ -61,10 +61,10 @@ run-gunicorn:

.PHONY: format
format:
ruff check --fix .
ruff check
ruff format .
mypy ./
poetry run ruff check --fix .
poetry run ruff check
poetry run ruff format .
poetry run mypy ./
npx prettier --write app/assets/javascripts app/assets/stylesheets tests_cypress/cypress/e2e

.PHONY: tailwind
Expand Down

0 comments on commit ede3865

Please sign in to comment.