Skip to content

Commit 535c47b

Browse files
author
Andy Babic
committed
Rename testmanage.py to manage.py
1 parent 69564b5 commit 535c47b

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed
File renamed without changes.

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,4 @@ exclude = [
6666
"CHANGELOG.md",
6767
"ruff.toml",
6868
"manage.py",
69-
"testmanage.py",
7069
]

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ deps =
4242

4343
install_command = python -Im pip install -U --pre {opts} {packages}
4444
commands =
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]
4848
base_python = python3.12
@@ -58,13 +58,13 @@ description = An interactive environment for local testing purposes
5858
basepython = python3.12
5959

6060
commands_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

6666
commands =
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

6969
setenv =
7070
INTERACTIVE = 1

0 commit comments

Comments
 (0)