fix noxfile calls

This commit is contained in:
Josh Thomas 2025-07-24 19:07:31 -05:00
parent f83e37a557
commit ee3774d0ef
3 changed files with 4 additions and 4 deletions

View file

@ -47,7 +47,7 @@ jobs:
- name: Run pre-commit
run: |
SKIP=no-commit-to-branch \
uv run noxfile.py --session lint
uv run nox --session lint
rustfmt:
runs-on: ubuntu-24.04

View file

@ -50,7 +50,7 @@ jobs:
env:
OS: ${{ inputs.os }}
run: |
uv run noxfile.py --session gha_matrix -- "${OS}"
uv run nox --session gha_matrix -- "${OS}"
test:
name: Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }} (${{ matrix.os }})
@ -77,7 +77,7 @@ jobs:
DJANGO_VERSION: ${{ matrix.django-version }}
PYTHON_VERSION: ${{ matrix.python-version }}
run: |
uv run noxfile.py --session "tests(python='${PYTHON_VERSION}', django='${DJANGO_VERSION}')"
uv run nox --session "tests(python='${PYTHON_VERSION}', django='${DJANGO_VERSION}')"
tests:
runs-on: ubuntu-latest

View file

@ -15,7 +15,7 @@ cog:
[private]
nox SESSION *ARGS:
uv run noxfile.py --session "{{ SESSION }}" -- "{{ ARGS }}"
uv run nox --session "{{ SESSION }}" -- "{{ ARGS }}"
bumpver *ARGS:
uv run --with bumpver bumpver {{ ARGS }}