2013-03-07 01:23:53 +01:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "pypy"
|
2014-04-19 22:29:44 +02:00
|
|
|
- "2.6"
|
2013-03-07 01:23:53 +01:00
|
|
|
- "2.7"
|
|
|
|
- "3.2"
|
|
|
|
- "3.3"
|
2014-04-30 08:24:19 +02:00
|
|
|
- "3.4"
|
2013-03-07 01:23:53 +01:00
|
|
|
# command to install dependencies
|
2013-04-20 22:39:58 +02:00
|
|
|
install:
|
2014-04-19 22:29:44 +02:00
|
|
|
- pip install -r requirements-dev.txt
|
2013-12-02 15:24:14 +01:00
|
|
|
- pip install coveralls
|
2014-04-19 22:29:44 +02:00
|
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi # needs for running tests
|
|
|
|
- pip install --allow-all-external -e .
|
|
|
|
# command to run tests
|
2013-08-24 17:03:11 +02:00
|
|
|
script: make travis
|
2013-12-02 15:24:14 +01:00
|
|
|
after_success: coveralls
|
2013-03-07 03:12:18 +01:00
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
- paultag@gmail.com
|
2013-03-09 23:25:48 +01:00
|
|
|
irc:
|
|
|
|
channels:
|
2013-03-09 23:30:07 +01:00
|
|
|
- "irc.freenode.net#woo-city-commits"
|
2013-04-01 15:21:12 +02:00
|
|
|
- "irc.freenode.net#hy"
|
2013-04-11 03:44:23 +02:00
|
|
|
on_success: change
|
|
|
|
on_failure: change
|
|
|
|
use_notice: false
|
|
|
|
# blacklist
|
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- debian
|