Skip to content

Commit

Permalink
Fixed ruff invocation command for github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
heuer committed Nov 16, 2024
1 parent ee025a7 commit 2c37306
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ jobs:
- name: Run lint tests
if: ${{ matrix.python-version == '3.12' }}
run: |
ruff .
ruff check .
mypy segno
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import shutil
import nox

_PY_VERSIONS = ('3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3')
_PY_VERSIONS = ('3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3')
_PY_DEFAULT_VERSION = sys.version[:4]

nox.options.sessions = chain([f'test-{version}' for version in _PY_VERSIONS], ['coverage', 'lint'])
Expand Down

0 comments on commit 2c37306

Please sign in to comment.