SigmaHQ/.travis.yml

25 lines
637 B
YAML
Raw Normal View History

language: python
2018-12-21 13:17:02 +00:00
dist: xenial
python:
# - 3.5 # Deactivated because Travis CI tests failed randomly (Travis's problem)
- 3.6
2018-12-21 13:17:02 +00:00
- 3.7
sudo: true
services:
- elasticsearch
cache: pip
2018-04-30 22:23:48 +00:00
before_install:
- curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.4.deb && sudo dpkg -i --force-confnew elasticsearch-6.2.4.deb && sudo service elasticsearch restart
install:
2017-12-08 21:38:27 +00:00
- pip install -r tools/requirements-devel.txt
script:
2017-08-07 12:05:55 +00:00
- make test
- make test-backend-es-qs
2019-02-02 07:56:00 +00:00
notifications:
email:
recipients:
- venom14@gmail.com
- thomas@patzke.org
2019-02-02 07:56:00 +00:00
on_success: change
on_failure: always