From 2885ac6ef77cb5af5cba51f9cac18a3f17ea8e57 Mon Sep 17 00:00:00 2001 From: Jordan Guymon Date: Wed, 29 Apr 2020 19:12:25 -0700 Subject: [PATCH] Disable verbose logging in CI testing There are so many tests that get printed now that we cause the Travis job to error out because the logs are too large. --- scripts/ci/run-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/run-tests b/scripts/ci/run-tests index 564c798964..9e330853af 100755 --- a/scripts/ci/run-tests +++ b/scripts/ci/run-tests @@ -17,4 +17,4 @@ def run(command): run('nosetests --with-coverage --cover-erase --cover-package botocore ' - '--with-xunit --cover-xml -v unit/ functional/') + '--with-xunit --cover-xml unit/ functional/')