-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.travis.yml
46 lines (46 loc) · 874 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
language: python
cache:
directories:
- "$HOME/.cache/pip"
- "$HOME/.pyenv"
matrix:
include:
- os: linux
dist: trusty
sudo: false
python: '2.7'
- os: linux
dist: trusty
sudo: false
python: '3.3'
- os: linux
dist: trusty
sudo: false
python: '3.4'
- os: linux
dist: trusty
sudo: false
python: '3.5'
- os: linux
dist: trusty
sudo: false
python: '3.6'
- os: linux
sudo: false
python: pypy
- os: linux
sudo: false
python: pypy3
allow_failures:
- python: '3.3'
- python: pypy
- python: pypy3
fast_finish: true
install:
- pip install -r requirements.txt
- pip install coveralls
script: py.test tests.py -v --cov tablereport --cov-report term-missing
after_success:
- coveralls
notifications:
email: never