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~1^2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=8095c3109e57764b15bdba653035221302cda9c2;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