-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathtox.ini
More file actions
33 lines (30 loc) · 692 Bytes
/
tox.ini
File metadata and controls
33 lines (30 loc) · 692 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
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313
[tox]
envlist =
py3{8,9,10,11,12}-dj{42}-pg{2-gis,2}
py3{8,9,10,11,12}-dj{42}-pg{3-gis,3}
py3{10,11,12}-dj{50}-pg{2-gis,2,3-gis,3}
py3{10,11,12,13}-dj{51}-pg{3-gis,3}
[testenv]
deps =
gevent
psycogreen
dj42: django~=4.2
dj50: django~=5.0
dj51: django~=5.1
pg2-gis: psycopg2-binary
pg2: psycopg2-binary
pg3-gis: psycopg[binary,pool]
pg3: psycopg[binary,pool]
commands =
pg2-gis: python -Wall runtests_psycopg2_gis.py
pg2: python -Wall runtests_psycopg2.py
pg3-gis: python -Wall runtests_psycopg3_gis.py
pg3: python -Wall runtests_psycopg3.py