forked from internetarchive/arklet
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtox.ini
More file actions
37 lines (35 loc) · 683 Bytes
/
tox.ini
File metadata and controls
37 lines (35 loc) · 683 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
32
33
34
35
36
37
[tox]
isolated_build = true
envlist = py37-django32, py{38,39,310,311}-django{32,40,41}
requires =
tox-poetry-dev-dependencies
[testenv]
poetry_add_dev_dependencies = True
deps =
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
django-environ
psycopg2
whitelist_externals =
poetry
bash
skip_install = true
commands =
python -V
python manage.py version
pytest .
[testenv:py{38,39,310,311}-django41]
poetry_add_dev_dependencies = True
deps =
django41: django
django-environ
psycopg2
whitelist_externals =
poetry
bash
skip_install = true
pip_pre = true
commands =
python -V
python manage.py version
pytest .