Skip to content

Commit

Permalink
Fix ruff lint calls
Browse files Browse the repository at this point in the history
  • Loading branch information
zprobst committed Aug 7, 2024
1 parent 8d1b836 commit 56958bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: poetry run pytest --cov nodestream --cov-report term --cov-report xml -m "not e2e"
- name: Run Lints
run: |
poetry run ruff nodestream tests
poetry run ruff check nodestream tests
poetry run black nodestream tests --check
poetry run isort nodestream tests --check-only
- name: Upload coverage reports to Codecov
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ format: venv
.PHONY: lint
lint: venv
poetry run black nodestream tests --check
poetry run ruff nodestream tests
poetry run ruff check nodestream tests

.PHONY: test-unit
test-unit: venv
Expand Down

0 comments on commit 56958bd

Please sign in to comment.