From: Thomas Fillon Date: Fri, 8 Nov 2013 17:39:45 +0000 (+0100) Subject: Tests : supress print in test_run_all_doctests X-Git-Tag: 0.5.1-2~3^2~1 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=8969b3b459802c2c242788e8efb6dee12ed492b4;p=timeside.git Tests : supress print in test_run_all_doctests --- diff --git a/tests/test_run_all_doctests.py b/tests/test_run_all_doctests.py index 97b9673..8873b12 100755 --- a/tests/test_run_all_doctests.py +++ b/tests/test_run_all_doctests.py @@ -38,7 +38,7 @@ def load_tests(loader, tests, ignore): for module in modules_list: tests.addTests(doctest.DocTestSuite(module, test_finder=finder)) - print tests + return tests