forked from pytest-dev/pytest-cov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
89 lines (87 loc) · 2.37 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
# NOTE: this file is auto-generated via ci/bootstrap.py (ci/templates/.travis.yml).
dist: xenial
language: python
cache: false
env:
global:
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
stages:
- lint
- examples
- tests
jobs:
fast_finish: true
allow_failures:
- python: '3.8'
include:
- stage: lint
env: TOXENV=check
- env: TOXENV=docs
- stage: tests
env: TOXENV=py27-pytest46-xdist127-coverage55
python: '2.7'
- env: TOXENV=py35-pytest46-xdist127-coverage55
python: '3.5'
- env: TOXENV=py36-pytest46-xdist127-coverage55
python: '3.6'
- env: TOXENV=py37-pytest46-xdist127-coverage55
python: '3.7'
- env: TOXENV=pypy-pytest46-xdist127-coverage55
python: 'pypy'
- env: TOXENV=pypy3-pytest46-xdist127-coverage55
python: 'pypy3'
- env: TOXENV=py36-pytest46-xdist133-coverage55
python: '3.6'
- env: TOXENV=py36-pytest54-xdist133-coverage55
python: '3.6'
- env: TOXENV=py37-pytest46-xdist133-coverage55
python: '3.7'
- env: TOXENV=py37-pytest54-xdist133-coverage55
python: '3.7'
- env: TOXENV=py38-pytest46-xdist133-coverage55
python: '3.8'
- env: TOXENV=py38-pytest54-xdist133-coverage55
python: '3.8'
- env: TOXENV=pypy3-pytest46-xdist133-coverage55
python: 'pypy3'
- env: TOXENV=pypy3-pytest54-xdist133-coverage55
python: 'pypy3'
- env: TOXENV=py36-pytest62-xdist202-coverage55
python: '3.6'
- env: TOXENV=py37-pytest62-xdist202-coverage55
python: '3.7'
- env: TOXENV=py38-pytest62-xdist202-coverage55
python: '3.8'
- env: TOXENV=py39-pytest62-xdist202-coverage55
python: '3.9'
- env: TOXENV=pypy3-pytest62-xdist202-coverage55
python: 'pypy3'
- stage: examples
python: '3.8'
script: cd $TARGET; tox -v
env:
- TARGET=examples/src-layout
- python: '3.8'
script: cd $TARGET; tox -v
env:
- TARGET=examples/adhoc-layout
before_install:
- python --version
- uname -a
- lsb_release -a
install:
- python -mpip install --progress-bar=off tox -rci/requirements.txt
- virtualenv --version
- easy_install --version
- pip --version
- tox --version
script:
- tox -v
after_failure:
- more .tox/log/* | cat
- more .tox/*/log/* | cat
notifications:
email:
on_success: never
on_failure: always