X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=test%2F__init__.py;fp=test%2F__init__.py;h=4241453f5a99fddb29d3e682244bca48a8f48799;hb=59a1dcf2bf416a2527f9fdfb377afbbfa6cef696;hp=6942bf2f2af83c8749bae65c586f685ec5b95e08;hpb=3074f78cad49c95a7f808a72403809df4f7edc5b;p=dunshire.git diff --git a/test/__init__.py b/test/__init__.py index 6942bf2..4241453 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) + runner.run(suite)