.travis.yml 329 B

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