Skip to content

Commit

Permalink
Update ruff invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
nvictus committed Aug 1, 2024
1 parent 027b085 commit b7a128c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
pip install -e .[test]
- name: Lint with ruff
run: |
ruff pqdict tests
ruff check pqdict tests
- name: Static type check with mypy
run: |
mypy pqdict tests
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ changelog = "https://github.com/nvictus/pqdict/blob/master/CHANGES"
path = "pqdict/__init__.py"

[tool.hatch.envs.default.scripts]
lint = "ruff ."
fix = "ruff --fix ."
lint = "ruff check ."
fix = "ruff check --fix ."
test = "pytest"
docs = "sphinx-autobuild docs docs/_build/html"

Expand Down

0 comments on commit b7a128c

Please sign in to comment.