lemur/.travis.yml

35 lines
526 B
YAML
Raw Normal View History

2015-07-21 01:13:42 +02:00
sudo: false
2015-08-04 06:07:28 +02:00
2015-07-21 01:13:42 +02:00
language: python
2015-08-04 06:07:28 +02:00
2015-07-23 19:01:18 +02:00
addons:
postgresql: "9.4"
2015-08-04 06:07:28 +02:00
matrix:
include:
- python: "2.7"
env: TOXENV=py27
- python: "3.5"
env: TOXENV=py35
2015-08-04 06:07:28 +02:00
2015-07-21 01:13:42 +02:00
cache:
directories:
- node_modules
2015-07-23 21:26:18 +02:00
- .pip_download_cache
2015-08-04 06:07:28 +02:00
2015-07-23 21:26:18 +02:00
env:
global:
- PIP_DOWNLOAD_CACHE=".pip_download_cache"
2015-08-04 06:07:28 +02:00
2015-06-22 22:47:27 +02:00
before_script:
2015-07-23 18:54:38 +02:00
- psql -c "create database lemur;" -U postgres
- psql -c "create user lemur with password 'lemur;'" -U postgres
2015-07-21 17:49:34 +02:00
- npm install -g bower
2015-08-04 06:07:28 +02:00
2015-07-21 01:13:42 +02:00
script:
2015-07-21 18:17:29 +02:00
- make test
2015-07-21 01:13:42 +02:00
notifications:
email:
kglisson@netflix.com