File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 47
47
48
48
# install miniconda
49
49
if [ " ${TRAVIS_OS_NAME} " == " osx" ]; then
50
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh || exit 1
50
+ time wget http://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh || exit 1
51
51
else
52
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh || exit 1
52
+ time wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh || exit 1
53
53
fi
54
- bash miniconda.sh -b -p " $MINICONDA_DIR " || exit 1
54
+ time bash miniconda.sh -b -p " $MINICONDA_DIR " || exit 1
55
55
fi
56
56
57
57
echo " [show conda]"
90
90
echo " [Not using ccache]"
91
91
fi
92
92
93
+ echo " [create env]"
94
+
93
95
# may have installation instructions for this build
94
96
INSTALL=" ci/install-${PYTHON_VERSION}${JOB_TAG} .sh"
95
97
if [ -e ${INSTALL} ]; then
96
98
time bash $INSTALL || exit 1
97
99
else
98
100
# create new env
99
- time conda create -n pandas python=$PYTHON_VERSION pytest || exit 1
101
+ # this may already exists, in which case our caching worked
102
+ time conda create -n pandas python=$PYTHON_VERSION pytest
100
103
fi
101
104
102
105
# build deps
You can’t perform that action at this time.
0 commit comments