forked from sigsep/sigsep-mus-eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis_dependencies.sh
45 lines (34 loc) · 1023 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
42
43
44
45
#!/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='pip pytest numpy scipy coverage'
conda create -q -n $ENV_NAME "python=$TRAVIS_PYTHON_VERSION" $deps
conda update --all
}
src="$HOME/env/miniconda$TRAVIS_PYTHON_VERSION"
if [ ! -d "$src" ]; then
mkdir -p $HOME/env
pushd $HOME/env
# Download miniconda packages
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-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 ffmpeg==4.1
pip install cffi
pip install python-coveralls pytest-cov mock
pip install coverage>=4.4
source deactivate
popd
else
echo "Using cached dependencies"
fi