From ee3774d0efff24bb3ccbd0706c20f1af54981b06 Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 24 Jul 2025 19:07:31 -0500 Subject: [PATCH] fix noxfile calls --- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- Justfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1acf1e8..73bfc31 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 30b882f..025a9c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/Justfile b/Justfile index d246a74..1a409d5 100644 --- a/Justfile +++ b/Justfile @@ -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 }}