Skip to content

Commit d528b59

Browse files
reporting modification to support multiple platforms
1 parent f59c862 commit d528b59

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/testrail_integration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,8 @@ def reportable(platform_to_test=None):
172172
)
173173
num_suites = 0
174174
for site, regions in l10n_mappings.items():
175-
num_suites += len(regions)
175+
# each region for win and mac (linux not yet added)
176+
num_suites += len(regions) * 2
176177
logging.warning(
177178
f"Potentially matching run found for {platform}, may be reportable. ({covered_suites} out of {num_suites} site/region mappings already reported.)"
178179
)

0 commit comments

Comments
 (0)