From a4c59ded76d80fd99ad66e864cd60212a2c02996 Mon Sep 17 00:00:00 2001 From: ZyX Date: Sat, 13 Apr 2013 15:44:08 +0400 Subject: [PATCH] Make tests more verbose and catch first KeyboardInterrupt --- tests/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test.sh b/tests/test.sh index a8439ac7..c65e6668 100755 --- a/tests/test.sh +++ b/tests/test.sh @@ -3,7 +3,7 @@ FAILED=0 export PYTHONPATH="${PYTHONPATH}:`realpath .`" for file in tests/test_*.py ; do - if ! ${PYTHON} $file ; then + if ! ${PYTHON} $file --verbose --catch ; then FAILED=1 fi done