X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=test%2F__init__.py;h=bbcd4ab767f5cdfd4175b3b49a1edbd78f5e7cb7;hb=a3b56774ac44ee53bdce648e57976b97bff2ba13;hp=6942bf2f2af83c8749bae65c586f685ec5b95e08;hpb=bdb596b84a06d0c97e39d42586a51fc36ba44186;p=dunshire.git diff --git a/test/__init__.py b/test/__init__.py index 6942bf2..bbcd4ab 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -30,10 +30,10 @@ def build_suite(): suite.addTest(slg_tests) return suite -def run_suite(s): +def run_suite(suite): """ Run all of the unit and doctests for the ``dunshire`` and ``test`` packages. """ runner = TextTestRunner(verbosity=1) - runner.run(s) + return runner.run(suite)