forked from alvarouc/polyssifier
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
41 lines (34 loc) · 770 Bytes
/
.travis.yml
File metadata and controls
41 lines (34 loc) · 770 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
# vim ft=yaml
# travis-ci.org definition for Nimfa tests
language: python
sudo: false
cache: pip
apt: true
addons:
apt:
packages:
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
python:
# - "2.7"
- "3.4"
- "3.5"
install:
- travis_wait pip install numpy
- travis_wait pip install --verbose scipy
- pip install pep8 python-coveralls pytest-cov keras numpy pytest matplotlib mlp h5py
- pip install pandas statsmodels
- pip install scikit-learn
# Skip setup.py for now
# - pip install -e .
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- "export PYTHONPATH=$PYTHONPATH:."
script:
- py.test --cov=polyssifier
after_success:
- coveralls