[Zope3-checkins]
SVN: zope.testing/trunk/src/zope/testing/testrunner.py
restore test runner to display uninterrupted dots at whatever
width you happen to have your terminal set at.
Chris Withers
chris at simplistix.co.uk
Mon Apr 3 12:48:30 EDT 2006
Log message for revision 66354:
restore test runner to display uninterrupted dots at whatever width you happen to have your terminal set at.
Changed:
U zope.testing/trunk/src/zope/testing/testrunner.py
-=-
Modified: zope.testing/trunk/src/zope/testing/testrunner.py
===================================================================
--- zope.testing/trunk/src/zope/testing/testrunner.py 2006-04-03 16:31:35 UTC (rev 66353)
+++ zope.testing/trunk/src/zope/testing/testrunner.py 2006-04-03 16:48:29 UTC (rev 66354)
@@ -462,8 +462,6 @@
if options.verbose > 0 or options.progress:
print ' Running:'
- if options.verbose == 1 and not options.progress:
- print ' ',
result = TestResult(options, tests)
t = time.time()
@@ -730,11 +728,6 @@
for i in range(count):
sys.stdout.write('.')
testsRun += 1
- if (testsRun % 50) == 0:
- print
- print ' ',
- elif options.verbose > 1:
- print ' ',
if options.verbose > 1:
s = str(test)
More information about the Zope3-Checkins
mailing list