Show More
@@ -102,6 +102,8 b' def parseargs():' | |||
|
102 | 102 | help="retest failed tests") |
|
103 | 103 | parser.add_option("-s", "--cover_stdlib", action="store_true", |
|
104 | 104 | help="print a test coverage report inc. standard libraries") |
|
105 | parser.add_option("-S", "--noskips", action="store_true", | |
|
106 | help="don't report skip tests verbosely") | |
|
105 | 107 | parser.add_option("-t", "--timeout", type="int", |
|
106 | 108 | help="kill errant tests after TIMEOUT seconds" |
|
107 | 109 | " (default: $%s or %d)" % defaults['timeout']) |
@@ -640,6 +642,7 b' def runchildren(options, tests):' | |||
|
640 | 642 | vlog('pid %d exited, status %d' % (pid, status)) |
|
641 | 643 | failures |= status |
|
642 | 644 | |
|
645 | if not options.noskips: | |
|
643 | 646 | for s in skips: |
|
644 | 647 | print "Skipped %s: %s" % (s[0], s[1]) |
|
645 | 648 | for s in fails: |
General Comments 0
You need to be logged in to leave comments.
Login now