Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander Land committed Aug 16, 2024
1 parent 1f30e6f commit 46baaab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
poetry install --with dev,test
- name: Run tests
run: pytest -v -s tests
run: poetry run pytest -v -s tests

- name: Run I18N conversion
run: python i18n.py
run: poetry run python i18n.py

- name: Build
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
poetry install --with dev,test
- name: Run tests
run: pytest tests
run: poetry run pytest tests

- name: Run I18N conversion
run: python i18n.py -todo
run: poetry run python i18n.py -todo

- name: Build
run: |
Expand Down

0 comments on commit 46baaab

Please sign in to comment.