summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2016-12-26 03:47:13 +0100
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2016-12-26 04:13:41 +0100
commit64342fcff069327034aa7d21b6faa91dccd0d69e (patch)
tree41a953d51e8f09cc9f36cdec086833258a38b565
parenta53b39efe8f8bef6f574de24a28fb27b143e890a (diff)
downloadpsycopg2-64342fcff069327034aa7d21b6faa91dccd0d69e.tar.gz
Less verbose travis tests
-rwxr-xr-xscripts/travis_test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/travis_test.sh b/scripts/travis_test.sh
index 1578308..61b57f6 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