2015-04-03 15:38:08 +02:00
|
|
|
[tox]
|
|
|
|
skipsdist = True
|
|
|
|
usedevelop = True
|
|
|
|
|
2024-10-10 21:19:28 +02:00
|
|
|
envlist = py{39,310,311,312,313}-dj{42,50,51,51stable,main}-{sqlite,postgres,mysql,mssql}-{elasticsearch8,elasticsearch7,noelasticsearch}-{customuser,emailuser}-{tz,notz},
|
2015-04-03 15:38:08 +02:00
|
|
|
|
|
|
|
[testenv]
|
2016-03-07 11:41:36 +01:00
|
|
|
install_command = pip install -e ".[testing]" -U {opts} {packages}
|
2016-05-03 11:57:36 +02:00
|
|
|
commands =
|
2019-10-10 12:00:14 +02:00
|
|
|
elasticsearch7: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch7
|
2023-07-13 19:39:11 +02:00
|
|
|
elasticsearch8: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch8
|
2018-10-29 11:28:05 +01:00
|
|
|
noelasticsearch: coverage run runtests.py {posargs}
|
2015-04-03 15:38:08 +02:00
|
|
|
|
|
|
|
basepython =
|
2020-11-02 18:29:58 +01:00
|
|
|
py39: python3.9
|
2021-10-06 12:42:56 +02:00
|
|
|
py310: python3.10
|
2022-10-25 13:57:15 +02:00
|
|
|
py311: python3.11
|
2023-10-04 12:36:44 +02:00
|
|
|
py312: python3.12
|
2024-10-10 21:19:28 +02:00
|
|
|
py313: python3.13
|
2015-04-03 15:38:08 +02:00
|
|
|
|
|
|
|
deps =
|
2015-04-10 05:44:41 +02:00
|
|
|
django-sendfile==0.3.6
|
2014-07-28 16:01:21 +02:00
|
|
|
Embedly
|
|
|
|
|
2023-04-03 16:09:22 +02:00
|
|
|
dj42: Django~=4.2.0
|
2023-11-30 11:57:53 +01:00
|
|
|
dj50: Django~=5.0.0
|
2024-08-07 17:06:39 +02:00
|
|
|
dj51: Django~=5.1.0
|
|
|
|
dj51stable: git+https://github.com/django/django.git@stable/5.1.x#egg=Django
|
2021-04-21 22:16:29 +02:00
|
|
|
djmain: git+https://github.com/django/django.git@main#egg=Django
|
2018-07-25 08:23:16 +02:00
|
|
|
|
2015-04-03 15:38:08 +02:00
|
|
|
postgres: psycopg2>=2.6
|
2020-11-02 19:40:58 +01:00
|
|
|
mysql: mysqlclient>=1.4,<2
|
2019-10-10 12:00:14 +02:00
|
|
|
elasticsearch7: elasticsearch>=7,<8
|
|
|
|
elasticsearch7: certifi
|
2023-07-13 21:26:08 +02:00
|
|
|
elasticsearch8: elasticsearch>=8,<9
|
2023-07-13 19:39:11 +02:00
|
|
|
elasticsearch8: certifi
|
2014-07-28 16:01:21 +02:00
|
|
|
|
|
|
|
setenv =
|
2017-11-24 04:05:54 +01:00
|
|
|
postgres: DATABASE_ENGINE=django.db.backends.postgresql
|
2014-07-28 16:01:21 +02:00
|
|
|
|
2015-04-03 15:38:08 +02:00
|
|
|
mysql: DATABASE_ENGINE=django.db.backends.mysql
|
|
|
|
mysql: DATABASE_HOST=localhost
|
|
|
|
mysql: DATABASE_USER=root
|
2015-04-03 17:54:52 +02:00
|
|
|
|
2018-08-21 17:20:56 +02:00
|
|
|
sqlite: DATABASE_NAME=wagtail.db
|
|
|
|
|
2020-08-14 22:53:14 +02:00
|
|
|
emailuser: USE_EMAIL_USER_MODEL=yes
|
2020-08-25 14:00:04 +02:00
|
|
|
notz: DISABLE_TIMEZONE=yes
|
2020-08-14 22:53:14 +02:00
|
|
|
|
2017-03-27 14:10:25 +02:00
|
|
|
# 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
|
2020-11-26 08:30:47 +01:00
|
|
|
mssql: DATABASE_PASSWORD=Password12!
|