Troubleshooting Travis CI

This commit is contained in:
Jeremy Stretch 2017-09-28 17:47:11 -04:00
parent 667eadb430
commit 90ec177360

View File

@ -1,6 +1,8 @@
sudo: required sudo: required
services: services:
- postgresql - postgresql
addons:
- postgresql: "9.4"
language: python language: python
python: python:
- "2.7" - "2.7"
@ -8,7 +10,8 @@ python:
install: install:
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install pep8 - pip install pep8
addons: before_script:
- postgresql: "9.4" - psql --version
- psql -U postgres -c 'SELECT version();'
script: script:
- ./scripts/cibuild.sh - ./scripts/cibuild.sh