The alternative test runner script shouldn't run on skipped tests.

This commit is contained in:
Dave Halter
2015-12-22 11:45:24 +01:00
parent 936cef97e9
commit 515d096d33

View File

@@ -396,6 +396,8 @@ if __name__ == '__main__':
current = cases[0].path if cases else None current = cases[0].path if cases else None
count = fails = 0 count = fails = 0
for c in cases: for c in cases:
if c.skip:
continue
if current != c.path: if current != c.path:
file_change(current, count, fails) file_change(current, count, fails)
current = c.path current = c.path