X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=test%2F__init__.py;h=28d90a6c56098a93e02efabc04ffa7185400c2bf;hb=4a9928501f79549742c2e335742ddc65040f744f;hp=2e23a7c7dbec733dc994b611e137a33f419d036d;hpb=d08e0af9bf86e81d4a5b3dbbe38092bacc5edd62;p=dunshire.git diff --git a/test/__init__.py b/test/__init__.py index 2e23a7c..28d90a6 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -44,10 +44,10 @@ def build_suite(doctests=True): suite.addTest(mat_tests) return suite -def run_suite(suite): +def run_suite(suite, verbosity): """ - Run all of the unit and doctests for the ``dunshire`` and ``test`` - packages. + Run all of the unit and doctests for the :mod:`dunshire` and + :mod:`test` packages. """ - runner = TextTestRunner(verbosity=1) + runner = TextTestRunner(verbosity=verbosity) return runner.run(suite)