2015-07-20 16:13:42 -07:00
|
|
|
language: python
|
2016-10-09 00:05:50 -07:00
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
|
|
|
|
|
|
|
node_js:
|
|
|
|
- "4.2"
|
2015-08-03 21:07:28 -07:00
|
|
|
|
2015-07-23 10:01:18 -07:00
|
|
|
addons:
|
|
|
|
postgresql: "9.4"
|
2015-08-03 21:07:28 -07:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- python: "2.7"
|
|
|
|
env: TOXENV=py27
|
2016-05-05 12:52:08 -07:00
|
|
|
- python: "3.5"
|
|
|
|
env: TOXENV=py35
|
2015-08-03 21:07:28 -07:00
|
|
|
|
2015-07-20 16:13:42 -07:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- node_modules
|
2015-07-23 12:26:18 -07:00
|
|
|
- .pip_download_cache
|
2015-08-03 21:07:28 -07:00
|
|
|
|
2015-07-23 12:26:18 -07:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- PIP_DOWNLOAD_CACHE=".pip_download_cache"
|
2015-08-03 21:07:28 -07:00
|
|
|
|
2015-06-22 13:47:27 -07:00
|
|
|
before_script:
|
2015-07-23 09:54:38 -07:00
|
|
|
- psql -c "create database lemur;" -U postgres
|
|
|
|
- psql -c "create user lemur with password 'lemur;'" -U postgres
|
2016-10-09 00:05:50 -07:00
|
|
|
- npm config set registry https://registry.npmjs.org
|
2015-07-21 08:49:34 -07:00
|
|
|
- npm install -g bower
|
2015-08-03 21:07:28 -07:00
|
|
|
|
2015-07-20 16:13:42 -07:00
|
|
|
script:
|
2015-07-21 09:17:29 -07:00
|
|
|
- make test
|
2015-07-20 16:13:42 -07:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email:
|
2015-10-29 13:02:58 -07:00
|
|
|
kglisson@netflix.com
|