We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b4cf5e commit a610da3Copy full SHA for a610da3
ci/install_travis.sh
@@ -178,15 +178,15 @@ if [ "$PIP_BUILD_TEST" ]; then
178
179
# build & install testing
180
echo "[building release]"
181
- bash scripts/build_dist_for_release.sh
+ time bash scripts/build_dist_for_release.sh || exit 1
182
conda uninstall -y cython
183
- time pip install dist/*tar.gz --quiet || exit 1
+ time pip install dist/*tar.gz || exit 1
184
185
elif [ "$CONDA_BUILD_TEST" ]; then
186
187
188
echo "[building conda recipe]"
189
- conda build ./conda.recipe --numpy 1.13 --python 3.5 -q --no-test
+ time conda build ./conda.recipe --numpy 1.13 --python 3.5 -q --no-test
190
191
echo "[installing]"
192
conda install pandas --use-local
0 commit comments