Skip to content

Commit

Permalink
fixed ruff instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
stared committed Jan 15, 2024
1 parent 8e61039 commit c6c9f2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Critical ruff lint
run: |
ruff check --format=github --select=E9,F63,F7,F82 .
ruff check --select=E9,F63,F7,F82 .
- name: Test with pytest
run: |
Expand All @@ -62,4 +62,4 @@ jobs:

- name: Full ruff lint
run: |
ruff check --format=github . --exit-zero
ruff check . --exit-zero
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ exclude = ["scripts/tests"]
external = ["FURB123"]
flake8-annotations = {"allow-star-arg-any" = true, "suppress-dummy-args" = true}
flake8-pytest-style = {"parametrize-values-type" = "tuple", "mark-parentheses" = false}
format = "grouped"
ignore = ["ANN101","B904","N818","RET505"]
line-length = 120
per-file-ignores={"tests/*"=["ANN","S101","S105","S106"], "scripts/*"=["INP","S105","S106"]}
Expand Down

0 comments on commit c6c9f2d

Please sign in to comment.