hy/.travis.yml

34 lines
768 B
YAML
Raw Normal View History

2013-03-07 01:23:53 +01:00
language: python
python:
- "pypy"
- "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"
cache:
- $HOME/.pip-cache
2013-03-07 01:23:53 +01:00
# command to install dependencies
install:
- pip install -r requirements-travis.txt --download-cache $HOME/.pip-cache
- pip install coveralls --download-cache $HOME/.pip-cache
- 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
script: make travis
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"
- "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