forked from python-babel/babel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
105 lines (99 loc) · 2.27 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
language: python
# Use travis docker infrastructure for greater speed
sudo: false
cache:
directories:
- cldr
- "$HOME/.cache/pip"
- "$HOME/.pyenv"
matrix:
include:
- os: linux
python: 2.6
- os: linux
python: 2.6
env:
- CDECIMAL=m3-cdecimal
- os: linux
python: 2.7
- os: linux
python: 2.7
env:
- CDECIMAL=m3-cdecimal
- os: linux
python: pypy
- os: linux
python: pypy3
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
- os: osx
language: generic
env:
- PYTHON_VERSION=2.6.6
- PYENV_ROOT=~/.pyenv
- PATH=$PYENV_ROOT/shims:$PATH:$PYENV_ROOT/bin
- os: osx
language: generic
env:
- PYTHON_VERSION=2.6.6
- PYENV_ROOT=~/.pyenv
- PATH=$PYENV_ROOT/shims:$PATH:$PYENV_ROOT/bin
- CDECIMAL=m3-cdecimal
- os: osx
language: generic
env:
- PYTHON_VERSION=2.7.10
- PYENV_ROOT=~/.pyenv
- PATH=$PYENV_ROOT/shims:$PATH:$PYENV_ROOT/bin
- os: osx
language: generic
env:
- PYTHON_VERSION=2.7.10
- PYENV_ROOT=~/.pyenv
- PATH=$PYENV_ROOT/shims:$PATH:$PYENV_ROOT/bin
- CDECIMAL=m3-cdecimal
- os: osx
language: generic
env:
- PYTHON_VERSION=pypy-2.6.0
- PYENV_ROOT=~/.pyenv
- PATH=$PYENV_ROOT/shims:$PATH:$PYENV_ROOT/bin
- os: osx
language: generic
env:
- PYTHON_VERSION=3.3.6
- PYENV_ROOT=~/.pyenv
- PATH=$PYENV_ROOT/shims:$PATH:$PYENV_ROOT/bin
- os: osx
language: generic
env:
- PYTHON_VERSION=3.4.3
- PYENV_ROOT=~/.pyenv
- PATH=$PYENV_ROOT/shims:$PATH:$PYENV_ROOT/bin
- os: osx
language: generic
env:
- PYTHON_VERSION=3.5.1
- PYENV_ROOT=~/.pyenv
- PATH=$PYENV_ROOT/shims:$PATH:$PYENV_ROOT/bin
install:
- bash .ci/deps.${TRAVIS_OS_NAME}.sh
- pip install --upgrade pip
- pip install --upgrade pytest==2.8.5 pytest-cov==2.2.0 $CDECIMAL
- pip install --editable .
script:
- make test-cov
- bash .ci/deploy.${TRAVIS_OS_NAME}.sh
notifications:
email: false
irc:
channels:
- "chat.freenode.net#pocoo"
on_success: change
on_failure: always
use_notice: true
skip_join: true