37 lines
569 B
YAML
37 lines
569 B
YAML
sudo: false
|
|
|
|
language: python
|
|
|
|
addons:
|
|
postgresql: "9.4"
|
|
|
|
matrix:
|
|
include:
|
|
- python: "2.7"
|
|
env: TOXENV=py27
|
|
- python: "3.3"
|
|
env: TOXENV=py33
|
|
- python: "3.4"
|
|
env: TOXENV=py34
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- .pip_download_cache
|
|
|
|
env:
|
|
global:
|
|
- PIP_DOWNLOAD_CACHE=".pip_download_cache"
|
|
|
|
before_script:
|
|
- psql -c "create database lemur;" -U postgres
|
|
- psql -c "create user lemur with password 'lemur;'" -U postgres
|
|
- npm install -g bower
|
|
|
|
script:
|
|
- make test
|
|
|
|
notifications:
|
|
email:
|
|
kglisson@netflix.com
|