.travis.yml 375 B

1234567891011121314151617181920
  1. language: python
  2. python:
  3. - "2.6"
  4. - "2.7"
  5. env:
  6. - DB=sqlite
  7. - DB=mysql
  8. - DB=postgres
  9. before_script:
  10. - mysql -e 'create database sentry;'
  11. - psql -c 'create database sentry;' -U postgres
  12. install:
  13. - make develop dev-postgres dev-mysql
  14. script:
  15. - make test
  16. notifications:
  17. irc:
  18. channels: "irc.freenode.org#sentry"
  19. on_success: change
  20. on_failure: change