2013-03-07 01:23:53 +01:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "pypy"
|
|
|
|
- "2.7"
|
|
|
|
- "3.2"
|
|
|
|
- "3.3"
|
2013-03-14 01:02:16 +01:00
|
|
|
- "2.6"
|
2013-03-07 01:23:53 +01:00
|
|
|
# command to install dependencies
|
2013-04-20 22:39:58 +02:00
|
|
|
install:
|
2013-11-10 14:12:44 +01:00
|
|
|
- pip install -r requirements.txt
|
2013-12-02 15:24:14 +01:00
|
|
|
- pip install coveralls
|
2013-11-10 14:12:44 +01:00
|
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install argparse importlib unittest2 astor; fi
|
|
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install astor; fi
|
|
|
|
- if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then pip install astor; fi
|
2013-04-20 22:39:58 +02:00
|
|
|
- python setup.py -q install
|
2013-03-07 01:23:53 +01:00
|
|
|
# # 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
|