Skip to content

Commit 664e6f4

Browse files
authored
please revert soon: stop win from running all the time (#921)
1 parent 9a71ae5 commit 664e6f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/testrail_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def reportable(platform_to_test=None):
284284
logging.warning(
285285
f"Potentially matching run found for {platform}, may be reportable. ({covered_suites} out of {num_suites} suites already reported.)"
286286
)
287-
return covered_suites < num_suites
287+
return covered_suites + 1 < num_suites
288288

289289

290290
def testrail_init() -> TestRail:

0 commit comments

Comments
 (0)