forked from celery/py-amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (40 loc) · 834 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
42
43
language: python
sudo: false
cache: pip
env:
global:
PYTHONUNBUFFERED=yes
matrix:
fast_finish: true
include:
- python: 2.7
env: TOXENV=2.7
- python: pypy
env: TOXENV=pypy
- python: 3.4
env: TOXENV=3.4
- python: 3.5
env: TOXENV=3.5
- python: 3.6
env: TOXENV=3.6
- python: 2.7
env: TOXENV=flake8
- python: 2.7
env: TOXENV=flakeplus
- python: 2.7
env: TOXENV=pydocstyle
- python: 2.7
env: TOXENV=apicheck
install:
- pip install -U pip setuptools wheel
- pip install -U tox
script: tox -v -- -v
after_success:
- .tox/$TRAVIS_PYTHON_VERSION/bin/coverage xml
- .tox/$TRAVIS_PYTHON_VERSION/bin/codecov -e TOXENV
notifications:
irc:
channels:
- "chat.freenode.net#celery"
on_success: change
on_failure: change