forked from fhcrc/deenurp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
41 lines (35 loc) · 973 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
sudo: false
language: python
python: 2.7
cache:
# must specify pip dir
# https://github.com/travis-ci/travis-ci/issues/3239
directories:
- $HOME/.cache/pip
- $HOME/deenurp/src
env:
global:
# These two environment variables could be set by Travis itself, or Travis
# could configure itself in /etc/, ~/, or inside of the virtual
# environments. In any case if these two values get configured then end
# users only need to enable the pip cache and manually run pip wheel before
# running pip install.
- PIP_WHEEL_DIR=$HOME/.cache/pip/wheels
- PIP_FIND_LINKS=file://$HOME/.cache/pip/wheels
- VIRTUAL_ENV=deenurp-env
addons:
apt:
packages:
# scipy dependencies
- gfortran
- libopenblas-dev
- liblapack-dev
install:
- travis_wait 60 "bin/bootstrap.sh $VIRTUAL_ENV"
script:
- python setup.py test
# - tests/run.sh
notifications:
email: