mirror of https://github.com/celery/kombu.git
30 lines
645 B
YAML
30 lines
645 B
YAML
language: python
|
|
python:
|
|
- 2.7
|
|
- 3.3
|
|
- 3.4
|
|
- pypy
|
|
- pypy3
|
|
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
|
|
sudo pip install tox
|
|
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
|