Skip to content

Commit a610da3

Browse files
committed
CI: tweaks in install scripts
1 parent 9b4cf5e commit a610da3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/install_travis.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,15 +178,15 @@ if [ "$PIP_BUILD_TEST" ]; then
178178

179179
# build & install testing
180180
echo "[building release]"
181-
bash scripts/build_dist_for_release.sh
181+
time bash scripts/build_dist_for_release.sh || exit 1
182182
conda uninstall -y cython
183-
time pip install dist/*tar.gz --quiet || exit 1
183+
time pip install dist/*tar.gz || exit 1
184184

185185
elif [ "$CONDA_BUILD_TEST" ]; then
186186

187187
# build & install testing
188188
echo "[building conda recipe]"
189-
conda build ./conda.recipe --numpy 1.13 --python 3.5 -q --no-test
189+
time conda build ./conda.recipe --numpy 1.13 --python 3.5 -q --no-test
190190

191191
echo "[installing]"
192192
conda install pandas --use-local

0 commit comments

Comments
 (0)