wagtail/.travis.yml

91 wiersze
3.3 KiB
YAML
Czysty Zwykły widok Historia

language: python
2015-10-27 17:19:32 +00:00
cache: pip
2019-08-06 10:22:07 +00:00
dist: xenial
2016-02-10 18:22:56 +00:00
addons:
postgresql: "9.6"
2015-01-28 09:42:10 +00:00
matrix:
include:
2020-04-22 15:12:20 +00:00
- env: TOXENV=py36-dj22-mysql-noelasticsearch
python: 3.6
2020-02-18 13:55:53 +00:00
- env: TOXENV=py36-dj22-postgres-noelasticsearch
python: 3.6
2020-02-18 13:55:53 +00:00
- env: TOXENV=py37-dj22-sqlite-noelasticsearch
2019-04-01 17:56:31 +00:00
python: 3.7
- env: TOXENV=py37-dj30-sqlite-noelasticsearch
python: 3.7
- env: TOXENV=py37-dj30-mysql-noelasticsearch
2018-10-17 13:41:02 +00:00
python: 3.7
- env: TOXENV=py38-dj30-postgres-noelasticsearch
python: 3.8
- env: TOXENV=py38-dj31-postgres-noelasticsearch
python: 3.8
2020-08-14 20:53:14 +00:00
- env: TOXENV=py38-dj31-postgres-noelasticsearch-emailuser
python: 3.8
2020-08-25 12:00:04 +00:00
- env: TOXENV=py38-dj31-postgres-noelasticsearch-notz
python: 3.8
- env: TOXENV=py38-dj31stable-postgres-noelasticsearch
python: 3.8
- env: TOXENV=py38-djmaster-postgres-noelasticsearch
2019-10-15 15:30:58 +00:00
python: 3.8
2020-02-18 13:55:53 +00:00
- env: TOXENV=py36-dj22-sqlite-elasticsearch2 INSTALL_ELASTICSEARCH2=yes
python: 3.6
2020-02-18 13:55:53 +00:00
- env: TOXENV=py36-dj22-postgres-elasticsearch5 INSTALL_ELASTICSEARCH5=yes
python: 3.6
2019-04-01 17:56:31 +00:00
- env: TOXENV=py37-dj22-postgres-elasticsearch6 INSTALL_ELASTICSEARCH6=yes
2018-10-17 13:41:02 +00:00
python: 3.7
2019-10-15 15:30:58 +00:00
- env: TOXENV=py38-dj22-postgres-elasticsearch7 INSTALL_ELASTICSEARCH7=yes
python: 3.8
- env: TOXENV=py38-dj30-postgres-elasticsearch7 INSTALL_ELASTICSEARCH7=yes
python: 3.8
- env: TOXENV=py38-dj31-postgres-elasticsearch7 INSTALL_ELASTICSEARCH7=yes
python: 3.8
2020-08-14 20:53:14 +00:00
- env: TOXENV=py38-dj31-postgres-elasticsearch7-emailuser INSTALL_ELASTICSEARCH7=yes
python: 3.8
allow_failures:
# Ignore failures on Elasticsearch tests because ES on Travis is intermittently flaky
2020-02-18 13:55:53 +00:00
- env: TOXENV=py36-dj22-sqlite-elasticsearch2 INSTALL_ELASTICSEARCH2=yes
- env: TOXENV=py36-dj22-postgres-elasticsearch5 INSTALL_ELASTICSEARCH5=yes
2019-04-01 17:56:31 +00:00
- env: TOXENV=py37-dj22-postgres-elasticsearch6 INSTALL_ELASTICSEARCH6=yes
2019-10-15 15:30:58 +00:00
- env: TOXENV=py38-dj22-postgres-elasticsearch7 INSTALL_ELASTICSEARCH7=yes
- env: TOXENV=py38-dj30-postgres-elasticsearch7 INSTALL_ELASTICSEARCH7=yes
- env: TOXENV=py38-dj31-postgres-elasticsearch7 INSTALL_ELASTICSEARCH7=yes
2020-08-14 20:53:14 +00:00
- env: TOXENV=py38-dj31-postgres-elasticsearch7-emailuser INSTALL_ELASTICSEARCH7=yes
# allow failures against Django pre-releases on git
- env: TOXENV=py38-dj31stable-postgres-noelasticsearch
- env: TOXENV=py38-djmaster-postgres-noelasticsearch
2016-02-10 18:22:56 +00:00
# Services
services:
2016-02-10 18:22:56 +00:00
- elasticsearch
2018-10-17 13:41:02 +00:00
- mysql
2016-02-10 18:22:56 +00:00
# Package installation
install:
- pip install tox codecov
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
- 'if [[ -n "$INSTALL_ELASTICSEARCH2" ]]; then ./scripts/travis/install_elasticsearch2.sh; fi'
2016-11-08 11:17:26 +00:00
- 'if [[ -n "$INSTALL_ELASTICSEARCH5" ]]; then ./scripts/travis/install_elasticsearch5.sh; fi'
- 'if [[ -n "$INSTALL_ELASTICSEARCH6" ]]; then ./scripts/travis/install_elasticsearch6.sh; fi'
- 'if [[ -n "$INSTALL_ELASTICSEARCH7" ]]; then ./scripts/travis/install_elasticsearch7.sh; fi'
2016-02-10 18:22:56 +00:00
# Pre-test configuration
before_script:
2016-02-10 18:22:56 +00:00
- psql -c 'create database wagtaildemo;' -U postgres
- mysql -e "SET GLOBAL wait_timeout = 36000;"
- mysql -e "SET GLOBAL max_allowed_packet = 134209536;"
# Run the tests
script:
tox
after_success:
- codecov -F backend
2016-02-10 18:22:56 +00:00
# Who to notify about build results
notifications:
2016-02-10 17:51:59 +00:00
slack:
secure: Y/UERaVnR+RL2dOqLR0Nc60JdGkejQ1Ae5zvPRYdDiMIGSv/1KC3T5Dp8NxamqIlozbQNmRaZD+i4AdX60g1M3xlB9DMINzY584YK0X2T2S28+xIgE0MQJijbpfbk2veV8PMeA6EHNpG4zoT+4sbcSyljt9TPcYTTTiTB8rAtc0=
2016-02-10 18:22:56 +00:00
# bump Travis: 1