wagtail/.travis.yml

89 wiersze
2.7 KiB
YAML
Czysty Zwykły widok Historia

language: python
2015-10-27 17:19:32 +00:00
cache: pip
dist: trusty
2016-02-10 18:22:56 +00:00
# Use container-based infrastructure
sudo: false
2016-02-10 18:22:56 +00:00
# Install JDK9 for Elasticsearch 5
addons:
apt:
packages:
- oracle-java9-installer
- oracle-java9-set-default
2015-01-28 09:42:10 +00:00
matrix:
include:
- env: TOXENV=py34-dj111-postgres-noelasticsearch
python: 3.4
- env: TOXENV=py34-dj111-sqlite-noelasticsearch
python: 3.4
- env: TOXENV=py34-dj20-mysql-noelasticsearch
python: 3.4
- env: TOXENV=py35-dj111-postgres-noelasticsearch
python: 3.5
- env: TOXENV=py35-dj111-mysql-noelasticsearch
python: 3.5
- env: TOXENV=py35-dj111-postgres-elasticsearch2 INSTALL_ELASTICSEARCH2=yes
python: 3.5
sudo: true
- env: TOXENV=py35-dj20-sqlite-noelasticsearch
python: 3.5
2017-02-28 11:38:57 +00:00
- env: TOXENV=py36-dj111-sqlite-noelasticsearch
python: 3.6
- env: TOXENV=py36-dj111-postgres-noelasticsearch
python: 3.6
- env: TOXENV=py36-dj111-mysql-noelasticsearch
python: 3.6
2017-12-01 15:16:13 +00:00
- env: TOXENV=py36-dj20-postgres-noelasticsearch
python: 3.6
2017-02-28 11:38:57 +00:00
- env: TOXENV=py36-dj111-postgres-elasticsearch2 INSTALL_ELASTICSEARCH2=yes
python: 3.6
sudo: true
- env: TOXENV=py36-dj20-sqlite-elasticsearch2 INSTALL_ELASTICSEARCH2=yes
python: 3.6
sudo: true
2017-02-28 11:38:57 +00:00
- env: TOXENV=py36-dj111-postgres-elasticsearch5 INSTALL_ELASTICSEARCH5=yes
python: 3.6
sudo: true
2017-12-01 15:16:13 +00:00
- env: TOXENV=py36-dj20-postgres-elasticsearch5 INSTALL_ELASTICSEARCH5=yes
python: 3.6
sudo: true
allow_failures:
# Ignore failures on Elasticsearch tests because ES on Travis is intermittently flaky
- env: TOXENV=py35-dj111-postgres-elasticsearch2 INSTALL_ELASTICSEARCH2=yes
2017-02-28 11:38:57 +00:00
- env: TOXENV=py36-dj111-postgres-elasticsearch2 INSTALL_ELASTICSEARCH2=yes
- env: TOXENV=py36-dj20-sqlite-elasticsearch2 INSTALL_ELASTICSEARCH2=yes
2017-02-28 11:38:57 +00:00
- env: TOXENV=py36-dj111-postgres-elasticsearch5 INSTALL_ELASTICSEARCH5=yes
2017-12-01 15:16:13 +00:00
- env: TOXENV=py36-dj20-postgres-elasticsearch5 INSTALL_ELASTICSEARCH5=yes
2016-02-10 18:22:56 +00:00
# Services
services:
2016-02-10 18:22:56 +00:00
- elasticsearch
# 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'
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
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