.travis.yml 339 B

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