1234567891011121314151617181920 |
- language: python
- python:
- - "2.6"
- - "2.7"
- env:
- - DB=sqlite
- - DB=mysql
- - DB=postgres
- before_script:
- - mysql -e 'create database sentry;'
- - psql -c 'create database sentry;' -U postgres
- install:
- - make develop dev-postgres dev-mysql
- script:
- - make test
- notifications:
- irc:
- channels: "irc.freenode.org#sentry"
- on_success: change
- on_failure: change
|