]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - test/__main__.py
test: add the ability to run the test suite verbosely.
[dunshire.git] / test / __main__.py
index d4ef145caa663c78d6d4e1891b031b61d56d152b..c8f0f24369debd78bf06b0e4c16f441e16858b67 100755 (executable)
@@ -7,7 +7,7 @@ from sys import argv
 from test import build_suite, run_suite
 
 
-def main(doctests, loop):
+def main(doctests, loop, verbose):
     """
     The main function for this module. It runs the tests.
 
@@ -26,11 +26,17 @@ def main(doctests, loop):
     loop : bool
         Do you want to loop and rerun the tests indefinitely?
 
+    verbose : bool
+        Do you want to see the name and result of each test as
+        it is run?
+
     """
     # Running the test suite clobbers it! And deepcopy() doesn't work
     # on a suite that contains doctests! ARRRGRRGRRGRHG!!!!!! You're all
     # idiots.
-    result = run_suite(build_suite(doctests))
+    verbosity = 1
+    if verbose: verbosity = 2
+    result = run_suite(build_suite(doctests), verbosity)
 
     if result.wasSuccessful() and not loop:
         return 0
@@ -40,10 +46,13 @@ def main(doctests, loop):
         while result.wasSuccessful():
             print('Passed: {:d}'.format(passed))
             passed += 1
-            result = run_suite(build_suite(doctests))
+            result = run_suite(build_suite(doctests), verbosity)
 
     return 1
 
 
 if __name__ == '__main__':
-    exit(main(not "--no-doctests" in argv, '--loop' in argv))
+    doctests = not "--no-doctests" in argv
+    loop = '--loop' in argv
+    verbose = '--verbose' in argv
+    exit(main(doctests, loop, verbose))