diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-04-07 11:45:13 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-04-08 08:52:04 -0600 |
commit | 313df463392352b6e31c512216da722b5cc31309 (patch) | |
tree | 978b2457f8b0a8489eb4f326d55c08c8aa180c78 /tools | |
parent | c1490e8a85c8c1b7be4e4f06d3d4ae9806968856 (diff) | |
download | numpy-313df463392352b6e31c512216da722b5cc31309.tar.gz |
TST: Do not ignore yield warnings in ci testing.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/travis-test.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/travis-test.sh b/tools/travis-test.sh index 70c512ea1..b99866f0d 100755 --- a/tools/travis-test.sh +++ b/tools/travis-test.sh @@ -113,11 +113,9 @@ run_test() "import os; import numpy; print(os.path.dirname(numpy.__file__))") export PYTHONWARNINGS=default if [ -n "$RUN_FULL_TESTS" ]; then - $PYTHON ../tools/test-installed-numpy.py -v --mode=full -- \ - --disable-pytest-warnings + $PYTHON ../tools/test-installed-numpy.py -v --mode=full else - $PYTHON ../tools/test-installed-numpy.py -v -- \ - --disable-pytest-warnings + $PYTHON ../tools/test-installed-numpy.py -v fi if [ -n "$USE_ASV" ]; then pushd ../benchmarks |