From 70e14323f9a943d732346144d5a41aa1a9718585 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Mon, 26 Dec 2016 03:47:13 +0100 Subject: [PATCH] Less verbose travis tests --- scripts/travis_test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/travis_test.sh b/scripts/travis_test.sh index 15783088..61b57f6c 100755 --- a/scripts/travis_test.sh +++ b/scripts/travis_test.sh @@ -16,11 +16,11 @@ run_test () { export PSYCOPG2_TESTDB_USER=travis export PSYCOPG2_TEST_REPL_DSN= - python -c "from psycopg2 import tests; tests.unittest.main(defaultTest='tests.test_suite')" --verbose + python -c "from psycopg2 import tests; tests.unittest.main(defaultTest='tests.test_suite')" printf "\n\nRunning tests against PostgreSQL $version (green mode)\n\n" export PSYCOPG2_TEST_GREEN=1 - python -c "from psycopg2 import tests; tests.unittest.main(defaultTest='tests.test_suite')" --verbose + python -c "from psycopg2 import tests; tests.unittest.main(defaultTest='tests.test_suite')" } run_test 9.6 54396