123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- [tox]
- skipsdist = True
- usedevelop = True
- envlist = py{36,37,38,39}-dj{22,30,31,31stable,master}-{sqlite,postgres,mysql,mssql}-{elasticsearch7,elasticsearch6,elasticsearch5,noelasticsearch}-{customuser,emailuser}-{tz,notz},
- [testenv]
- install_command = pip install -e ".[testing]" -U {opts} {packages}
- commands =
- elasticsearch5: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch5
- elasticsearch6: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch6
- elasticsearch7: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch7
- noelasticsearch: coverage run runtests.py {posargs}
- basepython =
- py36: python3.6
- py37: python3.7
- py38: python3.8
- py39: python3.9
- deps =
- django-sendfile==0.3.6
- Embedly
- dj22: Django>=2.2,<2.3
- dj30: Django>=3.0,<3.1
- dj31: Django>=3.1,<3.2
- dj31stable: git+https://github.com/django/django.git@stable/3.1.x#egg=Django
- djmaster: git+https://github.com/django/django.git@master#egg=Django
- postgres: psycopg2>=2.6
- mysql: mysqlclient>=1.4,<2
- elasticsearch5: elasticsearch>=5,<6
- elasticsearch5: certifi
- elasticsearch6: elasticsearch>=6.4.0,<7
- elasticsearch6: certifi
- elasticsearch7: elasticsearch>=7,<8
- elasticsearch7: 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!
- [testenv:flake8]
- basepython=python3.6
- deps=flake8>=3.6.0
- commands=flake8
|