Skip to content

Commit

Permalink
Merge branch 'main' into task/better-dx
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewleith authored Jan 30, 2025
2 parents b719c61 + ac3503a commit f7a62aa
Show file tree
Hide file tree
Showing 8 changed files with 1,313 additions and 338 deletions.
6 changes: 3 additions & 3 deletions .devcontainer/scripts/installations.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ poetry completions zsh > ~/.zfunc/_poetry
cd /workspace
poetry install

# Install pre-commit hooks
poetry run pre-commit install

# Poe the Poet plugin tab completions
touch ~/.zfunc/_poe
poetry run poe _zsh_completion > ~/.zfunc/_poe
Expand All @@ -54,3 +51,6 @@ npm run build

# install npm deps (i.e. cypress)
cd tests_cypress && npm install && npx cypress install && cd ..

# Install pre-commit hooks
poetry run pre-commit install
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 @@ -62,10 +62,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
Loading

0 comments on commit f7a62aa

Please sign in to comment.