a823aca0c8
Signed-off-by: Julien Danjou <julien@danjou.info>
31 lines
775 B
YAML
31 lines
775 B
YAML
language: python
|
|
python:
|
|
- "pypy"
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
- "2.6"
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -r requirements.txt --use-mirrors
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 astor --use-mirrors; fi
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install astor --use-mirrors; fi
|
|
- if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then pip install astor --use-mirrors; fi
|
|
- python setup.py -q install
|
|
# # command to run tests
|
|
script: nosetests
|
|
notifications:
|
|
email:
|
|
- paultag@gmail.com
|
|
irc:
|
|
channels:
|
|
- "irc.freenode.net#woo-city-commits"
|
|
- "irc.freenode.net#hy"
|
|
on_success: change
|
|
on_failure: change
|
|
use_notice: false
|
|
# blacklist
|
|
branches:
|
|
except:
|
|
- debian
|