From a3f315cf62ef747d07fecf9bc916b86988d857eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=E5=85=AD=E5=9B=9B=E4=BA=8B=E4=BB=B6=20?= =?UTF-8?q?=E6=B3=95=E8=BD=AE=E5=8A=9F?= Date: Tue, 22 Jan 2019 00:00:00 +0000 Subject: [PATCH] test: no fail on dry run --- common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.py b/common.py index 40f562e..ee06e77 100644 --- a/common.py +++ b/common.py @@ -1082,7 +1082,7 @@ Stop running at the first failed test. passes = [] fails = [] for test in self.tests: - if test.result == TestResult.PASS: + if test.result in (TestResult.PASS, None): passes.append(test) else: fails.append(test)