-
Notifications
You must be signed in to change notification settings - Fork 14
/
.old-travis.yml
59 lines (50 loc) · 1006 Bytes
/
.old-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
---
sudo: false
language: python
addons:
apt:
packages:
- libssl-dev
- openssl
- libxml2
- pkg-config
matrix:
include:
- python: 2.7
dist: trusty
env: TOXENV=py27 LXML_VERSION=3.5.0
- python: 3.5
dist: trusty
env: TOXENV=py35 LXML_VERSION=3.5.0
- python: 3.6
dist: trusty
env: TOXENV=py36 LXML_VERSION=3.5.0
- python: 2.7
dist: trusty
env: TOXENV=py27 LXML_VERSION=4.3.0
- python: 3.5
dist: trusty
env: TOXENV=py35 LXML_VERSION=4.3.0
- python: 3.6
dist: trusty
env: TOXENV=py36 LXML_VERSION=4.3.0
- python: 3.7
dist: xenial
env: TOXENV=py37 LXML_VERSION=4.3.0
before_cache:
- rm -rf $HOME/.cache/pip/log
cache:
directories:
- $HOME/.cache/pip
deps:
- codecov
install:
- pip install tox codecov
- pip install lxml==$LXML_VERSION
script:
- tox -e $TOXENV
after_success:
- tox -e coverage-report
- codecov
notifications:
email: false