summaryrefslogtreecommitdiff
path: root/tools/travis-test.sh
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2019-09-16 10:15:51 +0300
committermattip <matti.picus@gmail.com>2019-09-20 09:35:48 +0300
commita68c5b8a8d73fe7898ba6b96bb7f75b8f378d0cc (patch)
treee22a36b5a24fbb9d2ef7760a5c12c67334194554 /tools/travis-test.sh
parentf5487746586045d1be89e1205108fe0f1808def0 (diff)
downloadnumpy-a68c5b8a8d73fe7898ba6b96bb7f75b8f378d0cc.tar.gz
BUILD: mostly restore verbose output on CI (except for pip install)
Diffstat (limited to 'tools/travis-test.sh')
-rwxr-xr-xtools/travis-test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/travis-test.sh b/tools/travis-test.sh
index 8fbae4b09..5b624eef1 100755
--- a/tools/travis-test.sh
+++ b/tools/travis-test.sh
@@ -52,7 +52,7 @@ setup_base()
else
# Python3.5-dbg on travis seems to need this
export CFLAGS=$CFLAGS" -Wno-maybe-uninitialized"
- $PYTHON setup.py build_ext --inplace 2>&1 | tee log
+ $PYTHON setup.py build --debug-configure build_ext --inplace 2>&1 | tee log
fi
grep -v "_configtest" log \
| grep -vE "ld returned 1|no previously-included files matching|manifest_maker: standard file '-c'" \
@@ -151,7 +151,7 @@ if [ -n "$USE_WHEEL" ] && [ $# -eq 0 ]; then
export F90='gfortran --coverage'
export LDFLAGS='--coverage'
fi
- $PYTHON setup.py bdist_wheel
+ $PYTHON setup.py build --debug-configure bdist_wheel
# Make another virtualenv to install into
virtualenv --python=`which $PYTHON` venv-for-wheel
. venv-for-wheel/bin/activate