.travis.yml 349 B

1234567891011121314151617181920
  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. - "3.6"
  11. - "3.7"
  12. install:
  13. - pip install -r requirements.txt
  14. - pip install pycodestyle
  15. - pip install coverage
  16. before_script:
  17. - psql --version
  18. - psql -U postgres -c 'SELECT version();'
  19. script:
  20. - ./scripts/cibuild.sh