]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - test/__init__.py
Clean up a few pylint warnings and make "doc" a phony target.
[dunshire.git] / test / __init__.py
index 6942bf2f2af83c8749bae65c586f685ec5b95e08..4241453f5a99fddb29d3e682244bca48a8f48799 100644 (file)
@@ -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)