X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dunshire.git;a=blobdiff_plain;f=test%2F__main__.py;h=d03b7a6968504f2b941cb4dd223a13676565e32b;hp=aca4e64ec83a4f944e57ec67117c6d2de74db0db;hb=ec229377a0e8f15b6209b69cf7f983cdbabb1f9f;hpb=d08e0af9bf86e81d4a5b3dbbe38092bacc5edd62 diff --git a/test/__main__.py b/test/__main__.py index aca4e64..d03b7a6 100755 --- a/test/__main__.py +++ b/test/__main__.py @@ -28,7 +28,10 @@ if result.wasSuccessful() and not loop: exit(0) if loop: + passed = 0 while(result.wasSuccessful()): + print('Passed: {:d}'.format(passed)) + passed += 1 result = run_suite(build_suite(doctests)) exit(1)