-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtox.ini
47 lines (40 loc) · 1.02 KB
/
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
41
42
43
44
45
46
47
[tox]
envlist = py{38,39,310,311}-django{22,32,40,41,42}, py39-flake8, py39-coverage
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[testenv:py39-flake8]
deps =
flake8
flake8-print
commands = flake8
[testenv:py39-django32-coverage]
allowlist_externals = echo
commands =
# https://github.com/nedbat/coveragepy/issues/1272
pip install coverage<6
coverage erase
coverage run ./manage.py test
coverage report --include='admin_sort*' --omit='*/tests/*'
coverage html --include='admin_sort*' --omit='*/tests/*'
echo "opener htmlcov/index.html"
[testenv]
commands = python manage.py test
setenv =
DJANGO_SETTINGS_MODULE=admin_sort.tests.settings
PYTHONPATH={toxinidir}
deps =
django22: Django>=2.2,<2.3
django32: Django>=3.2,<4
django40: Django>=4,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5
django-appconf
selenium<4.3
[testenv:py37-django40]
allowlist_externals = echo
deps =
commands= echo "no django 4.0 on python 3.7!"