forked from modlinltd/django-advanced-filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
53 lines (44 loc) · 799 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
50
51
52
53
[tox]
envlist =
py{38,39}-django{22,32,40}
pypy38-django22
py310-django{32,40}
report
[pycodestyle]
max-line-length = 120
[testenv]
usedevelop = true
passenv = CI, PLAYWRIGHT_BROWSERS_PATH
deps =
-rtest-reqs.txt
django22: Django>=2.2,<3.0
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
depends =
!report: clean
report: ALL
parallel_show_output = true
allowlist_externals = bin/test.sh
commands =
bin/test.sh
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
pypy-3.8: pypy38
[gh-actions:env]
DJANGO =
2.2: django22
3.2: django32
4.0: django40
[testenv:report]
deps = coverage
skip_install = true
commands =
coverage report
coverage html
[testenv:clean]
deps = coverage
skip_install = true
commands = coverage erase