Skip to content

Commit 86e3ec3

Browse files
authored
Merge pull request #726 from mozilla/tracy/disable_flaky_mixed_content_downloads_test
tracy/Disable flaky mixed content downloads test
2 parents 1e15d32 + 0d6097f commit 86e3ec3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/downloads/test_mixed_content_download_via_https.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ def delete_files_regex_string():
2525
MAX_CHECKS = 30
2626

2727

28+
@pytest.mark.unstable(
29+
reason="Flaky in CI, see bug https://bugzilla.mozilla.org/show_bug.cgi?id=1976520"
30+
)
2831
def test_mixed_content_download_via_https(driver: Firefox, delete_files):
2932
"""
3033
C1756722: Verify that the user can download mixed content via HTTPS
@@ -41,7 +44,9 @@ def test_mixed_content_download_via_https(driver: Firefox, delete_files):
4144
download_name = WebDriverWait(driver, 10).until(
4245
EC.presence_of_element_located((By.CLASS_NAME, "downloadTarget"))
4346
)
44-
47+
#
48+
# Test failing here:
49+
#
4550
download_status = WebDriverWait(driver, 10).until(
4651
EC.presence_of_element_located((By.CLASS_NAME, "downloadProgress"))
4752
)

0 commit comments

Comments
 (0)