.travis.yml 287 B

12345678910111213141516
  1. sudo: required
  2. services:
  3. - postgresql
  4. addons:
  5. postgresql: "9.4"
  6. language: python
  7. python:
  8. - "3.5"
  9. install:
  10. - pip install -r requirements.txt
  11. - pip install pycodestyle
  12. before_script:
  13. - psql --version
  14. - psql -U postgres -c 'SELECT version();'
  15. script:
  16. - ./scripts/cibuild.sh