-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
53 lines (49 loc) · 1.11 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
[tox]
requires =
tox>=4
env_list = python37-dj22,py39-dj32,py310-dj42,py311-dj50
[testenv:python37-dj22]
description = Tests on python37,django22
setenv =
JUST_POSTGRES = true
passenv = *
deps =
django>=2.2.28,<2.3
django-environ>=0.10.0,<0.11
pillow>=9.5.0,<10
; psycopg2-binary>=2.8.6,<2.9 this is the correct version but c++ built tools :/
psycopg2-binary
pytest>=7.3.1,<7.4
pytest-django>=4.5.2,<4.6
commands =
pytest
[testenv:py39-dj32]
description = Tests on python39,django32
deps =
django>=3.2.19,<3.3
django-environ>=0.10.0,<0.11
pillow>=9.5.0,<10
pytest>=7.3.1,<7.4
pytest-django>=4.5.2,<4.6
commands =
pytest
[testenv:py310-dj42]
description = Tests on python310,django42
deps =
django>=4.2.1,<4.3
django-environ>=0.10.0,<0.11
pillow>=9.5.0,<10
pytest>=7.3.1,<7.4
pytest-django>=4.5.2,<4.6
commands =
pytest
[testenv:py311-dj50]
description = Tests on python311,django50
deps =
django>=5.0.3,<5.1
django-environ>=0.10.0,<0.11
pillow>=9.5.0,<10
pytest>=7.3.1,<7.4
pytest-django>=4.5.2,<4.6
commands =
pytest