From 57455bc787a9532557937027a3b475c630b67217 Mon Sep 17 00:00:00 2001 From: Peter Boin Date: Tue, 25 Jul 2017 01:55:09 +1000 Subject: [PATCH] removed verbose test output --- deployment/deploy.sh | 2 +- tests/runtests.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/deploy.sh b/deployment/deploy.sh index 5200927..0a254aa 100755 --- a/deployment/deploy.sh +++ b/deployment/deploy.sh @@ -154,7 +154,7 @@ function run_test() { pushd ../tests workon ${env_name} - ${env_python_bin} -m unittest discover -s . -p 'test_*.py' --verbose + ${env_python_bin} -m unittest discover -s . -p 'test_*.py' deactivate popd } diff --git a/tests/runtests.sh b/tests/runtests.sh index 06ad089..a735a38 100755 --- a/tests/runtests.sh +++ b/tests/runtests.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -python -m unittest discover -s . -p 'test_*.py' --verbose +python -m unittest discover -s . -p 'test_*.py'