forked from celery/celery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
41 lines (41 loc) · 924 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
language: python
python: 2.7
env:
global:
PYTHONUNBUFFERED=yes
matrix:
- TOXENV=2.7
- TOXENV=3.3
- TOXENV=3.4
- TOXENV=pypy
before_install:
- |
if [[ $TOXENV = pypy ]]; then
deactivate
sudo apt-add-repository --yes ppa:pypy/ppa
sudo apt-get update
sudo apt-get install pypy
source ~/virtualenv/pypy/bin/activate
fi
if [[ $TOXENV = 3.4 ]]; then
sudo apt-get update
sudo apt-get install python3.4-dev
source ~/virtualenv/python3.4
virtualenv ~/virtualenv/python3.4 --python=$(which python3.4)
source ~/virtualenv/python3.4/bin/activate
fi
python --version
uname -a
lsb_release -a
install:
- pip install tox
script:
- tox -v -- -v
after_success:
- .tox/$TRAVIS_PYTHON_VERSION/bin/coveralls
notifications:
irc:
channels:
- "chat.freenode.net#celery"
on_success: always
on_failure: always