2014-02-14 12:03:29 +00:00
|
|
|
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
|
|
|
|
2015-01-28 09:42:10 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
2020-02-18 13:55:53 +00:00
|
|
|
- env: TOXENV=py36-dj22-sqlite-elasticsearch2 INSTALL_ELASTICSEARCH2=yes
|
2018-07-25 06:23:16 +00:00
|
|
|
python: 3.6
|
2016-05-03 09:57:36 +00:00
|
|
|
allow_failures:
|
2017-10-11 15:32:52 +00:00
|
|
|
# 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
|
2016-02-10 18:22:56 +00:00
|
|
|
|
|
|
|
# Package installation
|
2014-02-14 12:15:34 +00:00
|
|
|
install:
|
2017-03-28 10:23:14 +00:00
|
|
|
- pip install tox codecov
|
2016-05-06 10:23:31 +00:00
|
|
|
- 'if [[ -n "$INSTALL_ELASTICSEARCH2" ]]; then ./scripts/travis/install_elasticsearch2.sh; fi'
|
2016-02-10 18:22:56 +00:00
|
|
|
|
|
|
|
# Run the tests
|
|
|
|
script:
|
|
|
|
tox
|
|
|
|
|
|
|
|
after_success:
|
2018-03-06 18:19:37 +00:00
|
|
|
- codecov -F backend
|
2016-02-10 18:22:56 +00:00
|
|
|
|
|
|
|
# Who to notify about build results
|
2014-02-14 12:03:29 +00:00
|
|
|
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
|