forked from crossbario/crossbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
55 lines (42 loc) · 1.04 KB
/
.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
44
45
46
47
48
49
50
51
52
53
54
55
language: python
sudo: false
install:
- pip install -U pip setuptools wheel
- pip install tox codecov
env:
- TOX_ENV=flake8
- TOX_ENV=py27-unpinned,coverage-report
- TOX_ENV=py27-pinned,coverage-report
- TOX_ENV=py27-abtrunk,coverage-report
- TOX_ENV=py34-unpinned,coverage-report
- TOX_ENV=py34-pinned,coverage-report
# Travis needs to update it's PyPy
#- TOX_ENV=pypy-twtrunk-abtrunk
#- TOX_ENV=pypy-twcurrent-abtrunk
#- TOX_ENV=pypy-twcurrent-abcurrent
script:
- tox -c tox.ini -e $TOX_ENV
after_success:
- codecov
notifications:
irc:
channels:
- "irc.freenode.org#crossbar"
use_notice: true
skip_join: true
cache:
directories:
- $HOME/.cache/pip
matrix:
fast_finish: true
# https://github.com/travis-ci/travis-ci/issues/4794#issuecomment-143758799
include:
- python: 3.5
env:
- TOX_ENV=py35-unpinned,coverage-report
- python: 3.5
env:
- TOX_ENV=py35-pinned,coverage-report
- python: 3.5
env:
- TOX_ENV=py35-abtrunk,coverage-report