-
Notifications
You must be signed in to change notification settings - Fork 209
/
tox.ini
40 lines (37 loc) · 888 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tox]
# Sync with .github/workflows/build.yml
# Use tox -l
envlist =
# We don't really need to test all combinations, we pick a few
# representatives
py37-django22
py37-django30
py38-django31
py39-django32
py39-django40
py310-django40
py311-django42
py312-django50
checkmanifest
[testenv]
commands =
python --version
./runtests.py
./runtests.py --use-tz=false
allowlist_externals=./runtests.py
deps =
-r requirements-test.txt
django22: Django==2.2.19
django30: Django==3.0.13
django31: Django==3.1.7
django32: Django==3.2.9
django40: Django==4.0.3
django42: Django==4.2.11
django50: Django==5.0.4
usetztrue: pytz
[testenv:checkmanifest]
basepython = python3.9
deps =
check-manifest
Django
commands = check-manifest