diff options
author | mattip <matti.picus@gmail.com> | 2022-01-26 12:38:45 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2022-01-26 12:38:45 +0200 |
commit | 9be10756d2b5dacc08fa44b04f94f6941920188c (patch) | |
tree | 489462a912ce7d9abbf8032d5f55349d1a7ddf65 | |
parent | a5067520ee3c263be02b405151429247453f0270 (diff) | |
download | numpy-9be10756d2b5dacc08fa44b04f94f6941920188c.tar.gz |
BUILD: [wheel build] increase verbosity when testing
-rw-r--r-- | tools/wheels/cibw_test_command.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/wheels/cibw_test_command.sh b/tools/wheels/cibw_test_command.sh index ef67172d8..b296993fc 100644 --- a/tools/wheels/cibw_test_command.sh +++ b/tools/wheels/cibw_test_command.sh @@ -11,7 +11,7 @@ if [[ $RUNNER_OS == "Windows" ]]; then PY_DIR=$(python -c "import sys; print(sys.prefix)") mkdir $PY_DIR/libs fi -python -c "import sys; import numpy; sys.exit(not numpy.test('full', extra_argv=['-v']))" +python -c "import sys; import numpy; sys.exit(not numpy.test('full', extra_argv=['-vvv']))" python $PROJECT_DIR/tools/wheels/check_license.py if [[ $UNAME == "Linux" || $UNAME == "Darwin" ]] ; then |