forked from wagtail/wagtail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
56 lines (45 loc) · 1.72 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
54
55
56
[tox]
skipsdist = True
usedevelop = True
envlist = py{39,310,311,312,313}-dj{42,50,51,51stable,main}-{sqlite,postgres,mysql,mssql}-{elasticsearch8,elasticsearch7,noelasticsearch}-{customuser,emailuser}-{tz,notz},
[testenv]
install_command = pip install -e ".[testing]" -U {opts} {packages}
commands =
elasticsearch7: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch7
elasticsearch8: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch8
noelasticsearch: coverage run runtests.py {posargs}
basepython =
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
py313: python3.13
deps =
django-sendfile==0.3.6
Embedly
dj42: Django~=4.2.0
dj50: Django~=5.0.0
dj51: Django~=5.1.0
dj51stable: git+https://github.com/django/django.git@stable/5.1.x#egg=Django
djmain: git+https://github.com/django/django.git@main#egg=Django
postgres: psycopg2>=2.6
mysql: mysqlclient>=1.4,<2
elasticsearch7: elasticsearch>=7,<8
elasticsearch7: certifi
elasticsearch8: elasticsearch>=8,<9
elasticsearch8: certifi
setenv =
postgres: DATABASE_ENGINE=django.db.backends.postgresql
mysql: DATABASE_ENGINE=django.db.backends.mysql
mysql: DATABASE_HOST=localhost
mysql: DATABASE_USER=root
sqlite: DATABASE_NAME=wagtail.db
emailuser: USE_EMAIL_USER_MODEL=yes
notz: DISABLE_TIMEZONE=yes
# Specific for Appveyor, see:
# https://www.appveyor.com/docs/services-databases/#sql-server-2016
mssql: DATABASE_ENGINE=sql_server.pyodbc
mssql: DATABASE_HOST=(local)\SQL2016
mssql: DATABASE_NAME=master
mssql: DATABASE_USER=sa
mssql: DATABASE_PASSWORD=Password12!