forked from tomerfiliba/plumbum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (41 loc) · 925 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
sudo: required
language: python
dist: trusty
matrix:
include:
- python: 2.6
env: PYV=2.6
before_install:
- pip install pycparser==2.17
- python: 2.7
env: PYV=2.7
- python: 3.4
env: PYV=3.4
- python: 3.5
env: PYV=3.5
- python: 3.6
env: PYV=3.6
- python: 3.7
env: PYV=3.7
dist: xenial
# - python: nightly
- python: pypy
- language: generic
env: PY3=2 PYV=Mac2
os: osx
before_install:
- python2 -m ensurepip --upgrade
- language: generic
os: osx
env: PY3=3 PYV=Mac3
before_install:
- brew update || echo "Already updated"
- brew upgrade python@3 || echo "Python3 already installed"
install: .ci/travis.sh
script: python$PY3 setup.py test -c
after_success:
- if [ -n "$PYV" ] ; then coveralls; fi
notifications:
email:
on_success: change
on_failure: change