-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtox.ini
49 lines (43 loc) · 1020 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
41
42
43
44
45
46
47
48
49
[tox]
envlist =
py{37}-django{22,30,31,32}
py{38,39,310}-django{22,30,31,32,40}
isolated_build = True
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
[testenv]
setenv =
PYTHONDONTWRITEBYTECODE=1
PYTHONWARNINGS=once
deps =
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
whitelist_externals = poetry
commands =
pip install pip -U
poetry install -v
poetry run pytest --cov={envsitepackagesdir}/django_inet --cov-report=xml
codecov -e TOXENV
[flake8]
extend-ignore = E203, E266, E501
exclude =
.git,
.venv,
.tox,
__pycache__,
build,
dist
# line length is intentionally set to 80 here because black uses Bugbear
# See https://github.com/psf/black/blob/master/docs/the_black_code_style.md#line-length for more details
max-line-length = 80
max-complexity = 18
select = B,C,E,F,W,T4,B9
[pytest]
norecursedirs = .Ctl .tox data gen