forked from codeinthehole/django-cacheback
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
31 lines (29 loc) · 686 Bytes
/
tox.ini
File metadata and controls
31 lines (29 loc) · 686 Bytes
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
[tox]
isolated_build = true
envlist =
py{36,37,38,39}-django{22,30,31}
py{36,37,38,39,310}-django{32}
py{38,39,310}-django{40}
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
[testenv]
setenv = PYTHONPATH={toxinidir}
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
allowlist_externals =
poetry
sh
skip_install = true
commands =
poetry export --dev --without-hashes -o {toxworkdir}/requirements.txt
sh -c 'grep -v "^[dD]jango==" {toxworkdir}/requirements.txt | poetry run pip install --no-deps -r /dev/stdin'
pytest --isort --flake8 --black --cov