forked from scrapinghub/webstruct
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
42 lines (35 loc) · 721 Bytes
/
.travis.yml
File metadata and controls
42 lines (35 loc) · 721 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
language: python
python: 3.5
sudo: false
branches:
only:
- master
- /^\d\.\d+$/
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
addons:
apt:
packages:
- python-numpy
- python-scipy
- libatlas-base-dev
- liblapack-dev
- gfortran
install:
- pip install -U pip tox codecov
- git clone https://github.com/Jekub/Wapiti /tmp/wapiti
- pushd /tmp/wapiti && make && sudo make install && popd
script: tox
after_success:
- codecov
cache:
directories:
- $HOME/.cache/pip