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: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ jobs:
pip install tox==4.26.0

- name: Run tox
run: tox -e ${{ matrix.name }}
run: tox -e "${MATRIX_NAME}"
env:
MATRIX_NAME: ${{ matrix.name }}

- name: Report coverage
if: contains(matrix.name, 'coverage')
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ commands =
ruff check --diff {posargs:pytest_django pytest_django_test tests}
ruff format --quiet --diff {posargs:pytest_django pytest_django_test tests}
mypy {posargs:pytest_django pytest_django_test tests}
zizmor --persona=regular .github/workflows/deploy.yml .github/workflows/main.yml
zizmor --persona=pedantic .github/workflows/deploy.yml .github/workflows/main.yml

[testenv:doc8]
basepython = python3
Expand Down