forked from mvantellingen/python-zeep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
50 lines (41 loc) · 694 Bytes
/
.travis.yml
File metadata and controls
50 lines (41 loc) · 694 Bytes
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
---
sudo: false
dist: trusty
language: python
addons:
apt:
packages:
- libssl-dev
- libxmlsec1
- libxmlsec1-dev
- libxmlsec1-openssl
- libxslt1-dev
- pkg-config
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: pypy
env: TOXENV=pypy
before_cache:
- rm -rf $HOME/.cache/pip/log
cache:
directories:
- $HOME/.cache/pip
deps:
- codecov
install:
- pip install tox codecov
script:
- tox -e $TOXENV
after_success:
- tox -e coverage-report
- codecov
notifications:
email: false