forked from cosmir/openmic-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis_dependencies.sh
41 lines (31 loc) · 1003 Bytes
/
.travis_dependencies.sh
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
#!/bin/sh
ENV_NAME="test-environment"
set -e
conda_create ()
{
hash -r
conda config --set always_yes yes --set changeps1 no
conda update -q conda
conda config --add channels pypi
conda info -a
deps='six coverage numpy scipy pandas decorator sphinx matplotlib numba'
conda create -q -n $ENV_NAME "python=$TRAVIS_PYTHON_VERSION" $deps
}
src="$HOME/env/miniconda$TRAVIS_PYTHON_VERSION"
if [ ! -d "$src" ]; then
mkdir -p $HOME/env
pushd $HOME/env
# Download miniconda packages
wget http://repo.continuum.io/miniconda/Miniconda-3.16.0-Linux-x86_64.sh -O miniconda.sh;
# Install both environments
bash miniconda.sh -b -p $src
export PATH="$src/bin:$PATH"
conda_create
source activate $ENV_NAME
conda install -c conda-forge numpy scipy
pip install coverage pytest python-coveralls pytest-cov pytest-faulthandler
source deactivate
popd
else
echo "Using cached dependencies"
fi