Skip to content

Commit fb6e7db

Browse files
Merge pull request #660 from mozilla/philimon/reporting_fix
philimon/fix_missing_mapping
2 parents b218c83 + e23c4ae commit fb6e7db

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

l10n_CM/run_l10n.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"calvinklein",
2424
"bestbuy",
2525
"decathlon",
26+
"newegg",
2627
"vans",
2728
"ebay",
2829
"newbalance",

modules/testrail_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def reportable(platform_to_test=None):
177177
logging.warning(
178178
f"Potentially matching run found for {platform}, may be reportable. ({covered_suites} out of {num_suites} site/region mappings already reported.)"
179179
)
180-
return covered_suites < num_suites - 2 # account for some incomplete mappings
180+
return covered_suites < num_suites
181181
else:
182182
covered_suites = 0
183183
for entry in plan_entries:

0 commit comments

Comments
 (0)