forked from ome/pydoop-features
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
50 lines (41 loc) · 905 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
47
48
49
50
language: python
python:
- "2.7"
env:
- AVRO=avro
- AVRO=pyavroc
# This (sudo: false) is needed to "run on container-based infrastructure" on
# which cache: is available
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
cache: pip
addons:
apt:
packages:
- build-essential
- gfortran
- git
- libblas-dev
- libfftw3-dev
- liblapack-dev
- libtiff-dev
- maven
- swig
before_install:
- pip install --upgrade pip
- pip install numpy
- pip install scipy
- pip install flake8
- pip install libtiff
- pip install matplotlib
- bash .travis/install_avro.sh "${AVRO}"
- bash .travis/install_wndcharm.sh
install:
- python setup.py install
before_script:
- mvn -B checkstyle:check
- flake8 .
script:
- mvn -B test
- python test/all_tests.py
- ./test/integration/run_local_features