Skip to content

Commit

Permalink
Run lints and tests directly
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzbrand committed Oct 8, 2024
1 parent bb3e03b commit 78b1f7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ jobs:
# Lints/tests should always run, even if other lints/tests have failed.
if: success() || failure() && steps.install-deps.outcome == 'success'
run: |
poetry run ruff format --check
ruff format --check
- name: Lint
if: success() || failure() && steps.install-deps.outcome == 'success'
run: |
poetry run ruff check
ruff check
- name: Run tests
if: success() || failure() && steps.install-deps.outcome == 'success'
run: |
poetry run pytest -vv
pytest -vv

0 comments on commit 78b1f7a

Please sign in to comment.