forked from tomerfiliba/plumbum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (47 loc) · 864 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
44
45
46
47
sudo: required
language: python
dist: xenial
matrix:
include:
- 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
- python: 3.8
env: PYV=3.8
- python: pypy3
- language: generic
env: PY3=2 PYV=Mac2
os: osx
before_install:
- python2 -m ensurepip
- language: generic
os: osx
env: PY3=3 PYV=Mac3
addons:
homebrew:
packages:
- python
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
deploy:
provider: pypi
user: "__token__"
distributions: sdist bdist_wheel
skip_existing: true
on:
tags: true
condition: $PVV = 3.8
password: $PYPI_TOKEN