TST Remove special handling of skipped tests

This commit is contained in:
Renato Alves
2021-04-14 19:26:41 +02:00
parent 3c8a34f7bb
commit f605540184

View File

@@ -97,13 +97,6 @@ if __name__ == "__main__":
if start is None:
start = 0
# Remove expected failures from the skipped tests category
for filename, value in expected.items():
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()))