forked from fu-berlin-swp-2014/center-points
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
28 lines (28 loc) · 987 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
language: python
python:
- "3.4"
install:
# pip compiles a lot of scipy and numpy C Code at installation. to enable fast
# travis test we use an exotic package manager called miniconda, which provides
# binary packages of numpy and scipy.
#
# This `.travis.yml` files is adapted from: http://conda.pydata.org/docs/travis.html
# You may want to periodically update this, although the conda update
# conda line below will keep everything up-to-date.
- wget http://repo.continuum.io/miniconda/Miniconda3-3.4.2-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update conda
# Useful for debugging any issues with conda
- conda info -a
- echo "`sed 's/==/=/' < requirements.txt`"
- ./setup_conda.sh
- source activate centerpoints
script:
- ./travis.sh
after_success:
coveralls
notifications:
email: false