Skip to content

Commit 07b7e40

Browse files
committed
test 1976523 passed with project's latest main merged
1 parent 7942331 commit 07b7e40

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ pytest = "<8.4"
1111
pytest-httpserver = "1.0.12"
1212
requests = "<3.0"
1313
pytest-xdist = "3.6.1"
14+
pytest-html = "4.1.1"
1415
pypom = "2.2.4"
1516
taskcluster-taskgraph = "==9.0.0"
1617
jsonpath-ng = "1.6.1"
@@ -24,7 +25,6 @@ google-auth = "2.32.0"
2425
psutil = "<6.1"
2526
pytest-json-report = "==1.5.0"
2627
beautifulsoup4 = "4.12.3"
27-
pytest-html = "*"
2828

2929
[dev-packages]
3030
werkzeug = "==3.0.3"

l10n_CM/run_l10n.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"standaardboekhandel",
6767
"douglas",
6868
"brico",
69-
"toychamp"
69+
"toychamp",
7070
}
7171

7272
loaded_valid_sites = valid_l10n_mappings().keys()

modules/browser_object_navigation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,10 +269,11 @@ def open_tracker_panel(self) -> BasePage:
269269

270270
@BasePage.context_chrome
271271
def click_file_download_warning_panel(self) -> BasePage:
272-
""" exit file download warning panel if present """
272+
"""exit file download warning panel if present"""
273273
self.element_clickable("file-download-warning-button")
274274
self.click_on("file-download-warning-button")
275275
return self
276+
276277
def wait_for_item_to_download(self, filename: str) -> BasePage:
277278
"""
278279
Check the downloads tool in the toolbar to wait for a given file to download

modules/testrail_integration.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,9 @@ def reportable(platform_to_test=None):
202202
run_region in distributed_mappings[site]
203203
and platform in run_platform
204204
):
205-
logging.warning(f"Already reported: {site} {run_region},{run_platform}")
205+
logging.warning(
206+
f"Already reported: {site} {run_region},{run_platform}"
207+
)
206208
covered_mappings += 1
207209
logging.warning(
208210
f"Potentially matching run found for {platform}, may be reportable. (Found {covered_mappings} site/region mappings reported, expected {expected_mappings}.)"

0 commit comments

Comments
 (0)