-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
43 lines (43 loc) · 811 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
language: python
sudo: false
env:
global:
LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
matrix:
include:
- name: "Check"
python: 3.6
env: TOXENV=check
- name: "Python 2.7"
python: 2.7
env: TOXENV=2.7
- name: "Python 3.4"
python: 3.4
env: TOXENV=3.4
- name: "Python 3.5"
python: 3.5
env: TOXENV=3.5
- name: "Python 3.6"
python: 3.6
env: TOXENV=3.6
- name: "Python 3.7"
python: 3.7
dist: xenial
env: TOXENV=3.7
- name: "PyPy"
python: pypy
env: TOXENV=pypy
before_install:
- python --version
- virtualenv --version
- pip --version
- uname -a
- lsb_release -a
install:
- pip install tox
script:
- tox -v
notifications:
email:
on_success: never
on_failure: always