-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
53 lines (48 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
48
49
50
51
52
53
language: python
sudo: false
dist: trusty
cache: pip
env:
global:
- PYTHONFAULTHANDLER=x
matrix:
include:
## PYTHON 3.8
- python: '3.9'
dist: bionic
sudo: true
env:
- TOXENV=.python39
## PYTHON 3.8
- python: '3.8'
dist: bionic
sudo: true
env:
- TOXENV=.python38
## PYTHON 3.7
- python: '3.7'
dist: xenial
sudo: true
env:
- TOXENV=.python37
## PYTHON 3.6
- python: '3.6'
env:
- TOXENV=.python36
## PYTHON 3.6 - OTHER TESTS
- python: '3.8'
dist: bionic
sudo: true
env:
- TOXENV=docs
- python: '3.8'
dist: bionic
sudo: true
env:
- TOXENV=coverage
install:
- pip install -U tox codecov
script:
- tox -- -nauto -v
after_success:
- if [[ -e .coverage ]]; then codecov -e $TOXENV; fi