##// END OF EJS Templates
setup: change url to github
setup: change url to github

File last commit:

r174:ebb1c6ba
r196:472d1df0 master
Show More
.travis.yml
45 lines | 1.2 KiB | text/x-yaml | YamlLexer
testing: stubs for travis and tox configs
r137 language: python
dist: xenial
notifications:
on_success: change
on_failure: always
matrix:
include:
- python: 3.5
elasticsearch: bump to ES 6.x
r170 env: TOXENV=py35 ES_VERSION=6.6.2 ES_DOWNLOAD_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-${ES_VERSION}.tar.gz
testing: stubs for travis and tox configs
r137 - python: 3.6
elasticsearch: bump to ES 6.x
r170 env: TOXENV=py36 ES_VERSION=6.6.2 ES_DOWNLOAD_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-${ES_VERSION}.tar.gz
testing: stubs for travis and tox configs
r137 addons:
postgresql: "9.6"
- python: 3.6
elasticsearch: bump to ES 6.x
r170 env: TOXENV=py36 PGPORT=5432 ES_VERSION=6.6.2 ES_DOWNLOAD_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-${ES_VERSION}.tar.gz
testing: stubs for travis and tox configs
r137 addons:
postgresql: "10"
apt:
packages:
- postgresql-10
- postgresql-client-10
install:
elasticsearch: bump to ES 6.x
r170 - wget ${ES_DOWNLOAD_URL}
travis: fix download script
r171 - tar -xzf elasticsearch-oss-${ES_VERSION}.tar.gz
travis: fix dirname
r173 - ./elasticsearch-${ES_VERSION}/bin/elasticsearch &
testing: stubs for travis and tox configs
r137 - travis_retry pip install -U setuptools pip tox
script:
tox: add positional arg handling
r174 - travis_retry tox -- -vv
testing: stubs for travis and tox configs
r137
services:
- postgresql
travis changes
r140 - redis
testing: stubs for travis and tox configs
r137
before_script:
travis changes
r140 - psql -c "create user test with encrypted password 'test';" -U postgres
- psql -c 'create database appenlight_test owner test;' -U postgres
testing: stubs for travis and tox configs
r137
after_success:
- pip install coveralls
- coveralls