forked from SmileyChris/django-countries
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tox.ini
103 lines (94 loc) · 2.05 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[tox]
distribute = False
envlist =
coverage_setup
# Latest
py311-latest{-pyuca,-noi18n}
# Historical Python, Django and DRF versions
py310-previous
# Legacy
py37-legacy
# Package checks
readme
bandit
mypy
coverage_report
skip_missing_interpreters = True
ignore_basepython_conflict = True
[gh-actions]
python =
3.7: py37
3.10: py310
3.11: py311, readme, bandit, mypy
[testenv]
basepython = python3
usedevelop = True
extras = test
setenv =
DJANGO_SETTINGS_MODULE = django_countries.tests.settings
deps =
coverage
legacy: djangorestframework==3.11.*
previous: djangorestframework==3.13.*
latest: djangorestframework==3.14.*
pyuca,legacy: pyuca
legacy: Django==3.2.*
previous: Django==4.0.*
latest: Django==4.1.*
latest: graphene-django==3.0.*
depends = coverage_setup
commands = coverage run -m pytest
[testenv:readme]
skip_install = True
deps =
docutils
Pygments
commands =
rst2html.py --report=info --halt=warning README.rst /dev/null
rst2html.py --report=info --halt=warning CHANGES.rst /dev/null
[py311-latest-noi18n]
setenv =
DJANGO_SETTINGS_MODULE = django_countries.tests.settings_noi18n
[testenv:pre]
pip_pre = true
recreate = true
deps =
pyuca
django
djangorestframework
commands =
pytest
[testenv:coverage_setup]
skip_install = True
depends =
commands = coverage erase
[testenv:coverage_report]
skip_install = True
parallel_show_output = True
depends =
py310-latest{-pyuca}
noi18n
py36-django32-drf312
py39-django{32,40}-drf313
py36-legacy
commands =
coverage combine
coverage html
coverage report --include="django_countries/tests/*" --fail-under=100 -m
coverage report --omit="django_countries/tests/*" --fail-under=90 -m
[testenv:bandit]
skip_install = True
deps = bandit
depends =
commands = bandit -r django_countries -x tests
[testenv:mypy]
skip_install = True
deps =
mypy
django-stubs
djangorestframework-stubs
pytest
types-setuptools
types-Pillow
depends =
commands = mypy django_countries