From 515d096d332a466b035504a37a004a5ec67b1b24 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 22 Dec 2015 11:45:24 +0100 Subject: [PATCH] The alternative test runner script shouldn't run on skipped tests. --- test/run.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/run.py b/test/run.py index 17a0405a..a1db7bdb 100755 --- a/test/run.py +++ b/test/run.py @@ -396,6 +396,8 @@ if __name__ == '__main__': current = cases[0].path if cases else None count = fails = 0 for c in cases: + if c.skip: + continue if current != c.path: file_change(current, count, fails) current = c.path