wagtail/tox.ini

64 wiersze
2.1 KiB
INI
Czysty Zwykły widok Historia

2015-04-03 13:38:08 +00:00
[tox]
skipsdist = True
usedevelop = True
2020-02-18 13:55:53 +00:00
envlist = py{35,36,37}-dj{22,30,30stable,master}-{sqlite,postgres,mysql,mssql}-{elasticsearch7,elasticsearch6,elasticsearch5,elasticsearch2,noelasticsearch},
2015-04-03 13:38:08 +00:00
[testenv]
install_command = pip install -e ".[testing]" -U {opts} {packages}
commands =
elasticsearch2: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch2
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 =
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
Embedly
2019-04-01 17:56:31 +00:00
dj22: Django>=2.2,<2.3
dj30: Django>=3.0,<3.1
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
djmaster: git+https://github.com/wagtail/django-modelcluster.git
2015-04-03 13:38:08 +00:00
postgres: psycopg2>=2.6
mysql: mysqlclient>=1.3.7,<1.4
Elasticsearch 2 support (#2573) * Created Elasticsearch 2 backend * Added tests for Elasticsearch 2 backend * Split models up into different indices pages, images and documents are now in separate indices * Prefix fields of child models to prevent mapping clashes * Replaced index_analyzer with analyzer/search_analyzer index_analyzer has been removed in Elasticsearch 2.0 https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking_20_mapping_changes.html#_analyzer_mappings There's no indication in Elasticsearch's docs that this wouldn't work on Elasticsearch 1.x. However, we found that the new configuration isn't reliable on Elasticsearch 1.6 and below (causes the test_query_analyzer test to fail randomly). * Implemented new way of representing content types in search index Instead of using a long string of model names that is queried using a "prefix" query, we instead use a multi-value string field and query it using a simple "match" query. The only reason why this isn't implemented in the Elasticsearch 1.x backend yet is backwards compatibility * Added another child model of SearchTest with clashing field mapping This checks that the namespacing of fields on child models is working properly (if it doesn't the update_index tests will fail) * Added tests for get_model_root function * fixup! Added tests for get_model_root function * Docs updates for Elasticsearch 2 support Also tweak examples to use elasticsearch2 backend by default * Test against Elasticsearch 2 on travis
2016-05-06 10:23:31 +00:00
elasticsearch2: elasticsearch>=2,<3
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
# 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!
[testenv:flake8]
2019-04-10 15:37:08 +00:00
basepython=python3.5
deps=flake8>=2.2.0
commands=flake8 wagtail