diff options
author | mattip <matti.picus@gmail.com> | 2019-09-16 10:15:51 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-09-20 09:35:48 +0300 |
commit | a68c5b8a8d73fe7898ba6b96bb7f75b8f378d0cc (patch) | |
tree | e22a36b5a24fbb9d2ef7760a5c12c67334194554 /tools | |
parent | f5487746586045d1be89e1205108fe0f1808def0 (diff) | |
download | numpy-a68c5b8a8d73fe7898ba6b96bb7f75b8f378d0cc.tar.gz |
BUILD: mostly restore verbose output on CI (except for pip install)
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/pypy-test.sh | 2 | ||||
-rwxr-xr-x | tools/travis-test.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/pypy-test.sh b/tools/pypy-test.sh index 5940cc75a..b02d18778 100755 --- a/tools/pypy-test.sh +++ b/tools/pypy-test.sh @@ -39,7 +39,7 @@ echo pypy3 version pypy3/bin/pypy3 -c "import sys; print(sys.version)" echo -pypy3/bin/pypy3 runtests.py --show-build-log -v -- -rsx \ +pypy3/bin/pypy3 runtests.py --debug-configure --show-build-log -v -- -rsx \ --junitxml=junit/test-results.xml --durations 10 echo Make sure the correct openblas has been linked in 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 |