wagtail/tox.ini

64 wiersze
2.0 KiB
INI
Czysty Zwykły widok Historia

2015-04-03 13:38:08 +00:00
[tox]
skipsdist = True
usedevelop = True
2020-11-04 22:24:59 +00:00
envlist = py{36,37,38,39}-dj{22,30,31,31stable,master}-{sqlite,postgres,mysql,mssql}-{elasticsearch7,elasticsearch6,elasticsearch5,noelasticsearch}-{customuser,emailuser}-{tz,notz},
2015-04-03 13:38:08 +00:00
[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}
2015-04-03 13:38:08 +00:00
basepython =
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
2020-11-02 17:29:58 +00:00
py39: python3.9
2015-04-03 13:38:08 +00:00
deps =
2015-04-10 03:44:41 +00:00
django-sendfile==0.3.6
Embedly
2019-04-01 17:56:31 +00:00
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
2018-08-14 14:43:28 +00:00
djmaster: git+https://github.com/django/django.git@master#egg=Django
2015-04-03 13:38:08 +00:00
postgres: psycopg2>=2.6
mysql: mysqlclient>=1.4,<2
2016-11-08 11:17:26 +00:00
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
2015-04-03 13:38:08 +00:00
mysql: DATABASE_ENGINE=django.db.backends.mysql
mysql: DATABASE_HOST=localhost
mysql: DATABASE_USER=root
2018-08-21 15:20:56 +00:00
sqlite: DATABASE_NAME=wagtail.db
2020-08-14 20:53:14 +00:00
emailuser: USE_EMAIL_USER_MODEL=yes
2020-08-25 12:00:04 +00:00
notz: DISABLE_TIMEZONE=yes
2020-08-14 20:53:14 +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
Improve database settings and docs for tests (#6585) This change makes several improvements: * Use in-memory SQLite database for test migrations The default database is SQLite but its NAME (which SQLite uses as the filename) was `wagtail`, which isn't valid since the wagtail codebase already has a `wagtail/` directory. Trying to run migration creation commands (https://docs.wagtail.io/en/latest/contributing/developing.html#running-migrations-for-the-test-app-models) produced an error: django.db.utils.OperationalError: unable to open database file because of this conflict. This change uses an in-memory database as the default database for tests. If DATABASE_NAME were set to a real file name, then running the migration command with SQLite creates an empty db with this filename on running `django-admin`. Other non-SQLite engines continue to use the original `wagtail` name, meaning that the `test_wagtail` database gets created just as before. * Modifies the default values for database USER, PASSWORD, HOST etc to being an empty string rather than None, to match Django's [defaults](https://docs.djangoproject.com/en/stable/ref/settings/#host). This helps avoid any potential issues when Django and database engines are expecting this being a string. * Adds documentation to `developing.rst` regarding installation of required database modules and available environment variables for database connection customisation * Normalises the DATABASE_PASSWORD tests environment variable to match the name in Django's database settings object
2020-11-26 07:30:47 +00:00
mssql: DATABASE_PASSWORD=Password12!
[testenv:flake8]
2020-08-14 20:53:14 +00:00
basepython=python3.6
deps=flake8>=3.6.0
2020-10-02 15:56:26 +00:00
commands=flake8