kombu/.travis.yml

30 lines
645 B
YAML
Raw Normal View History

2012-02-27 17:28:11 +00:00
language: python
python:
- 2.7
2012-11-12 15:56:30 +00:00
- 3.3
2014-05-21 12:25:25 +00:00
- 3.4
2014-02-09 15:47:11 +00:00
- pypy
2014-08-11 17:38:07 +00:00
- pypy3
2014-02-09 15:47:11 +00:00
before_install:
- |
deactivate
if python --version |& grep PyPy; then
sudo apt-add-repository --yes ppa:pypy/ppa
sudo apt-get update
sudo apt-get install pypy
source ~/virtualenv/pypy/bin/activate
fi
python --version
uname -a
lsb_release -a
2015-10-06 04:22:41 +00:00
sudo pip install tox
2014-02-09 20:39:07 +00:00
script: tox -v -e $TRAVIS_PYTHON_VERSION -- -v
after_success:
- .tox/$TRAVIS_PYTHON_VERSION/bin/coveralls
notifications:
irc:
channels:
- "chat.freenode.net#celery"
on_success: change
on_failure: change