mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Test: problems no longer includes "expected failures" in skipped
This commit is contained in:
parent
290674d7c1
commit
50fa772ce1
1 changed files with 7 additions and 0 deletions
|
@ -82,6 +82,13 @@ if __name__ == "__main__":
|
|||
# Last line contains the ending timestamp
|
||||
stop = float(timestamp.match(line).group(1))
|
||||
|
||||
# Remove expected failures from the skipped tests category
|
||||
for filename, value in expected.iteritems():
|
||||
if skipped[filename] == value:
|
||||
del skipped[filename]
|
||||
else:
|
||||
skipped[filename] -= value
|
||||
|
||||
v = "{0:>5d}"
|
||||
passed_str = "Passed:" + pad(24)
|
||||
passed_int = v.format(sum(passed.values()))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue