.travis.yml 290 B

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