mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 06:24:27 +08:00
The alternative test runner script shouldn't run on skipped tests.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user