File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed
Expand file tree Collapse file tree 3 files changed +6
-7
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -66,5 +66,4 @@ exclude = [
6666 " CHANGELOG.md" ,
6767 " ruff.toml" ,
6868 " manage.py" ,
69- " testmanage.py" ,
7069]
Original file line number Diff line number Diff line change 4242
4343install_command = python -Im pip install -U --pre {opts} {packages}
4444commands =
45- python -m coverage run {toxinidir}/testmanage .py test --deprecation all {posargs: -v 2}
45+ python -m coverage run {toxinidir}/manage .py test --deprecation all {posargs: -v 2}
4646
4747[testenv:coverage-report]
4848base_python = python3.12
@@ -58,13 +58,13 @@ description = An interactive environment for local testing purposes
5858basepython = python3.12
5959
6060commands_pre =
61- python {toxinidir}/testmanage .py makemigrations
62- python {toxinidir}/testmanage .py migrate
63- python {toxinidir}/
testmanage .py shell -c
" from django.contrib.auth.models import User;(not User.objects.filter(username='admin').exists()) and User.objects.create_superuser('admin', '[email protected] ', 'changeme')" 64- python {toxinidir}/testmanage .py createcachetable
61+ python {toxinidir}/manage .py makemigrations
62+ python {toxinidir}/manage .py migrate
63+ python {toxinidir}/
manage .py shell -c
" from django.contrib.auth.models import User;(not User.objects.filter(username='admin').exists()) and User.objects.create_superuser('admin', '[email protected] ', 'changeme')" 64+ python {toxinidir}/manage .py createcachetable
6565
6666commands =
67- {posargs:python -Im {toxinidir}/testmanage .py runserver 0.0.0.0:8020}
67+ {posargs:python -Im {toxinidir}/manage .py runserver 0.0.0.0:8020}
6868
6969setenv =
7070 INTERACTIVE = 1
You can’t perform that action at this time.
0 commit comments