0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-24 10:58:52 +01:00
wagtail/tox.ini

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.7 KiB
INI
Raw Normal View History

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]
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}
2015-04-03 15:38:08 +02:00
basepython =
2020-11-02 18:29:58 +01:00
py39: python3.9
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
Embedly
2023-04-03 16:09:22 +02:00
dj42: Django~=4.2.0
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
djmain: git+https://github.com/django/django.git@main#egg=Django
2015-04-03 15:38:08 +02:00
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
2015-04-03 15:38:08 +02:00
mysql: DATABASE_ENGINE=django.db.backends.mysql
mysql: DATABASE_HOST=localhost
mysql: DATABASE_USER=root
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
# 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 08:30:47 +01:00
mssql: DATABASE_PASSWORD=Password12!