-
Notifications
You must be signed in to change notification settings - Fork 27
/
.travis_dependencies.sh
41 lines (33 loc) · 1 KB
/
.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='pip pytest'
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
# code below is taken from http://conda.pydata.org/docs/travis.html
# We do this conditionally because it saves us some downloading if the
# version is the same.
wget https://repo.continuum.io/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
pip install setuptools --upgrade
source deactivate
popd
else
echo "Using cached dependencies"
fi