summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2022-09-19 17:29:36 -0500
committerGitHub <noreply@github.com>2022-09-19 17:29:36 -0500
commit1272086451305b52c7b445e85c8e4e1ff458ef0e (patch)
tree68f4472f19d6940ba15a456c20842bc76ce56b7f
parent65eb581a3bd4b5e0ee390606e20dc4b6f8597b34 (diff)
parentab35f4af64ba261d4521a4c263e881539d4cdb38 (diff)
downloadnumpy-1272086451305b52c7b445e85c8e4e1ff458ef0e.tar.gz
Merge pull request #22312 from charris/fix-travis-log-length
MAINT, TST: Shorten test output on travis builds
-rwxr-xr-xtools/travis-test.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/travis-test.sh b/tools/travis-test.sh
index a27f0a090..1bd012476 100755
--- a/tools/travis-test.sh
+++ b/tools/travis-test.sh
@@ -145,10 +145,12 @@ EOF
fi
if [ -n "$RUN_FULL_TESTS" ]; then
+ # Travis has a limit on log length that is causeing test failutes.
+ # The fix here is to remove the "-v" from the runtest arguments.
export PYTHONWARNINGS="ignore::DeprecationWarning:virtualenv"
- $PYTHON -b ../runtests.py -n -v --mode=full $DURATIONS_FLAG $COVERAGE_FLAG
+ $PYTHON -b ../runtests.py -n --mode=full $DURATIONS_FLAG $COVERAGE_FLAG
else
- $PYTHON ../runtests.py -n -v $DURATIONS_FLAG -- -rs
+ $PYTHON ../runtests.py -n $DURATIONS_FLAG -- -rs
fi
if [ -n "$RUN_COVERAGE" ]; then