-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
61 lines (48 loc) · 978 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
branches:
only:
- master
- ^\d+\.\d+\.\d+(-.+)?$
os:
- linux
- windows
- osx
language: python
python:
- 3.5
- 3.6
- pypy3.5
matrix:
include:
- os: linux
dist: xenial
python: 3.7 # See travis issue 10312
- os: osx
python: 3.7 # See travis issue 10312
allow_failures:
- python: pypy3.5 # See pipenv issue 3313 for pypy.
- os: osx # Travis does not support Python on osx for now.
- os: windows # Travis does not support Python on osx for now.
fast_finish: true
cache: pip
install: make init
script: make ci
notifications:
email:
on_success: never
on_failure: always
stages:
- Check
- Test
- Coverage
- Build
- Deploy
jobs:
include:
- stage: Check
script: make check
- stage: Coverage
script: make coverage
- stage: Build
script: make docs
- stage: Deploy
script: make publish