test: no fail on dry run

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2019-01-22 00:00:00 +00:00
parent a3069aaa3d
commit a3f315cf62

View File

@@ -1082,7 +1082,7 @@ Stop running at the first failed test.
passes = [] passes = []
fails = [] fails = []
for test in self.tests: for test in self.tests:
if test.result == TestResult.PASS: if test.result in (TestResult.PASS, None):
passes.append(test) passes.append(test)
else: else:
fails.append(test) fails.append(test)