2014-04-08 02:38:29 +04:00
|
|
|
# http://travis-ci.org/#!/mozilla/crontabber
|
|
|
|
|
|
|
|
language: python
|
|
|
|
|
|
|
|
python:
|
|
|
|
- 2.6
|
|
|
|
- 2.7
|
|
|
|
|
2014-04-08 03:02:12 +04:00
|
|
|
addons:
|
|
|
|
postgresql: "9.2"
|
|
|
|
|
2014-04-08 02:38:29 +04:00
|
|
|
before_install:
|
|
|
|
- pip install -r test-requirements.txt
|
2014-04-08 03:02:12 +04:00
|
|
|
- psql -c 'create database travis_ci_test;' -U postgres
|
2014-04-08 02:38:29 +04:00
|
|
|
|
|
|
|
install:
|
|
|
|
- python setup.py install
|
|
|
|
|
|
|
|
script:
|
2014-08-04 19:35:33 +04:00
|
|
|
- user=postgres dbname=travis_ci_test nosetests crontabber --with-cover --cover-erase --cover-package=crontabber
|
2014-04-08 02:38:29 +04:00
|
|
|
|
2014-04-08 03:02:12 +04:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels: "irc.mozilla.org#breakpad"
|
2014-08-04 19:35:33 +04:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
# Report coverage results to coveralls.io
|
|
|
|
- pip install coveralls --use-mirrors
|
|
|
|
- coveralls
|