diff options
-rwxr-xr-x | tools/travis-test.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/travis-test.sh b/tools/travis-test.sh index 15eb697d5..549a2d570 100755 --- a/tools/travis-test.sh +++ b/tools/travis-test.sh @@ -53,9 +53,9 @@ setup_base() $PYTHON setup.py build build_src --verbose-cfg build_ext --inplace 2>&1 | tee log fi grep -v "_configtest" log \ - | grep -vE "ld returned 1|no files found matching" - | grep -vE "no previously-included files matching" - | grep -vE "manifest_maker: standard file '-c'" + | grep -vE "ld returned 1|no files found matching" \ + | grep -vE "no previously-included files matching" \ + | grep -vE "manifest_maker: standard file '-c'" \ | grep -E "warning\>" \ | tee warnings if [ "$LAPACK" != "None" ]; then |