Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py310 .
# default set of ruff rules with GitHub Annotations
ruff check --output-format=github --target-version=py37 .
ruff check --output-format=github --target-version=py310 .
- name: Test with pytest
run: |
coverage run -m pytest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- "3.10"
- "3.12"
os:
- macos-13
- macos-latest
- ubuntu-latest
- windows-latest

Expand All @@ -32,9 +32,9 @@ jobs:
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py310 .
# default set of ruff rules with GitHub Annotations
ruff check --output-format=github --target-version=py37 .
ruff check --output-format=github --target-version=py310 .
- name: Test with pytest
run: |
pytest
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dev = [
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[tool.ruff.per-file-ignores]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]

[tool.coverage.report]
Expand Down