-
Notifications
You must be signed in to change notification settings - Fork 7
/
.travis.yml
62 lines (52 loc) · 1.11 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
language: python
dist: xenial
cache: false
env:
global:
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
- LANG=en_US.UTF-8
before_install:
- python --version
- uname -a
- lsb_release -a || true
install:
- python -mpip install --progress-bar=off tox -rci/requirements.txt
- virtualenv --version
- easy_install --version
- pip --version
- tox --version
jobs:
include:
- stage: Check Build
python: '3.6'
env:
- TOXENV=check
script: tox -v
- stage: Deploy Docs
python: '3.6'
env:
- TOXENV=docs
script: tox -v
# - stage: Python 3.6
# python: '3.6'
# env:
# - TOXENV=py36,coveralls
# script: tox -v
# - stage: Python 3.7
# python: '3.7'
# env:
# - TOXENV=py37,coveralls
# script: tox -v
# - stage: Python 3.8
# python: '3.8'
# env:
# - TOXENV=py38,coveralls
# script: tox -v
after_failure:
- more .tox/log/* | cat
- more .tox/*/log/* | cat
notifications:
email:
on_success: never
on_failure: always