2015-04-03 13:38:08 +00:00
|
|
|
[tox]
|
|
|
|
skipsdist = True
|
|
|
|
usedevelop = True
|
|
|
|
|
2019-12-17 12:43:46 +00:00
|
|
|
envlist = py{35,36,37}-dj{21,22,30,30stable,master}-{sqlite,postgres,mysql,mssql}-{elasticsearch7,elasticsearch6,elasticsearch5,elasticsearch2,noelasticsearch},
|
2015-04-03 13:38:08 +00:00
|
|
|
|
|
|
|
[testenv]
|
2016-03-07 10:41:36 +00:00
|
|
|
install_command = pip install -e ".[testing]" -U {opts} {packages}
|
2016-05-03 09:57:36 +00:00
|
|
|
commands =
|
2017-11-17 13:34:18 +00:00
|
|
|
elasticsearch2: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch2
|
|
|
|
elasticsearch5: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch5
|
2017-12-14 15:17:34 +00:00
|
|
|
elasticsearch6: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch6
|
2019-10-10 10:00:14 +00:00
|
|
|
elasticsearch7: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch7
|
2018-10-29 10:28:05 +00:00
|
|
|
noelasticsearch: coverage run runtests.py {posargs}
|
2015-04-03 13:38:08 +00:00
|
|
|
|
|
|
|
basepython =
|
2015-09-16 03:50:12 +00:00
|
|
|
py35: python3.5
|
2017-02-28 11:38:57 +00:00
|
|
|
py36: python3.6
|
2018-10-17 13:41:02 +00:00
|
|
|
py37: python3.7
|
2019-08-06 10:25:45 +00:00
|
|
|
py38: python3.8
|
2015-04-03 13:38:08 +00:00
|
|
|
|
|
|
|
deps =
|
2015-04-10 03:44:41 +00:00
|
|
|
django-sendfile==0.3.6
|
2014-07-28 14:01:21 +00:00
|
|
|
Embedly
|
|
|
|
|
2018-08-01 14:21:45 +00:00
|
|
|
dj21: Django>=2.1,<2.2
|
2019-04-01 17:56:31 +00:00
|
|
|
dj22: Django>=2.2,<2.3
|
2019-12-17 12:43:46 +00:00
|
|
|
dj30: Django>=3.0,<3.1
|
2019-11-06 16:29:41 +00:00
|
|
|
dj30stable: git+https://github.com/django/django.git@stable/3.0.x#egg=Django
|
|
|
|
dj30stable: git+https://github.com/wagtail/django-modelcluster.git
|
2018-08-14 14:43:28 +00:00
|
|
|
djmaster: git+https://github.com/django/django.git@master#egg=Django
|
2019-09-25 19:35:03 +00:00
|
|
|
djmaster: git+https://github.com/wagtail/django-modelcluster.git
|
2018-07-25 06:23:16 +00:00
|
|
|
|
2015-04-03 13:38:08 +00:00
|
|
|
postgres: psycopg2>=2.6
|
2018-08-08 22:50:21 +00:00
|
|
|
mysql: mysqlclient>=1.3.7,<1.4
|
2016-05-06 10:23:31 +00:00
|
|
|
elasticsearch2: elasticsearch>=2,<3
|
2016-11-08 11:17:26 +00:00
|
|
|
elasticsearch5: elasticsearch>=5,<6
|
2016-11-30 10:43:35 +00:00
|
|
|
elasticsearch5: certifi
|
2019-08-15 14:29:27 +00:00
|
|
|
elasticsearch6: elasticsearch>=6.4.0,<7
|
2017-12-14 15:17:34 +00:00
|
|
|
elasticsearch6: certifi
|
2019-10-10 10:00:14 +00:00
|
|
|
elasticsearch7: elasticsearch>=7,<8
|
|
|
|
elasticsearch7: certifi
|
2014-07-28 14:01:21 +00:00
|
|
|
|
|
|
|
setenv =
|
2017-11-24 03:05:54 +00:00
|
|
|
postgres: DATABASE_ENGINE=django.db.backends.postgresql
|
2014-07-28 14:01:21 +00:00
|
|
|
|
2015-04-03 13:38:08 +00:00
|
|
|
mysql: DATABASE_ENGINE=django.db.backends.mysql
|
|
|
|
mysql: DATABASE_HOST=localhost
|
|
|
|
mysql: DATABASE_USER=root
|
2015-04-03 15:54:52 +00:00
|
|
|
|
2018-08-21 15:20:56 +00:00
|
|
|
sqlite: DATABASE_NAME=wagtail.db
|
|
|
|
|
2017-03-27 12:10:25 +00: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
|
|
|
|
mssql: DATABASE_PASS=Password12!
|
|
|
|
|
2015-04-03 15:54:52 +00:00
|
|
|
[testenv:flake8]
|
2019-04-10 15:37:08 +00:00
|
|
|
basepython=python3.5
|
2015-04-03 15:54:52 +00:00
|
|
|
deps=flake8>=2.2.0
|
|
|
|
commands=flake8 wagtail
|