Updated documentation/naming in tally_plugin to reflect that the count of the

total number of tests run excludes skipped tests
This commit is contained in:
Peter Scheibel 2015-11-25 18:08:17 -08:00
parent d50a18d9eb
commit fc96f62794
2 changed files with 3 additions and 3 deletions

View File

@ -104,7 +104,7 @@ def run(names, outputDir, verbose=False):
succeeded = not tally.failCount and not tally.errorCount
tty.msg("Tests Complete.",
"%5d tests run" % tally.numberOfTests,
"%5d tests run" % tally.numberOfTestsRun,
"%5d failures" % tally.failCount,
"%5d errors" % tally.errorCount)

View File

@ -35,9 +35,9 @@ def __init__(self):
self.failCount = 0
self.errorCount = 0
# TODO: this doesn't account for the possibility of skipped tests
@property
def numberOfTests(self):
def numberOfTestsRun(self):
"""Excludes skipped tests"""
return self.errorCount + self.failCount + self.successCount
def options(self, parser, env=os.environ):