Skip to content

Commit 13ead4f

Browse files
authored
Merge pull request #464 from mozilla/tracy/cleanup-temporary-marks
Remove marks we added to clear up CI for other test fixes to land
2 parents 48cf5da + 79f92bb commit 13ead4f

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

tests/address_bar_and_search/test_default_search_provider_change_awesome_bar.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ def test_case():
1212

1313

1414
@pytest.mark.ci
15-
@pytest.mark.skip("Scotch Bonnet")
1615
def test_default_search_provider_change_awesome_bar(driver: Firefox):
1716
"""
1817
C2860208 - This test makes sure that the default search provider can be changed and settings are applied

tests/notifications/test_notifications_displayed.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ def temp_selectors():
4343
}
4444

4545

46-
@pytest.mark.skip
4746
@pytest.mark.ci
4847
def test_notifications_displayed(driver: Firefox, temp_page, temp_selectors):
4948
"""

tests/security_and_privacy/test_https_enabled_private_browsing.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ def test_case():
1414
HTTP_SITE = "http://example.com"
1515

1616

17-
@pytest.mark.skip("136.0b3 security changes")
1817
def test_https_first_mode_in_private_browsing(driver: Firefox):
1918
"""
2019
C1362731 Check that https First Mode is properly enabled and working in Private Browsing

tests/security_and_privacy/test_private_browser_password_doorhanger.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from platform import system
1+
import sys
22

33
import pytest
44
from selenium.webdriver import Firefox
@@ -21,7 +21,9 @@ def add_prefs():
2121
return [("signon.rememberSignons", True)]
2222

2323

24-
@pytest.mark.skipif(system == "Linux", reason="136.0b3 Linux security bustage")
24+
@pytest.mark.skipif(
25+
sys.platform.lower().startswith("linux"), reason="136.0b3 Linux security bustage"
26+
)
2527
def test_no_password_doorhanger_private_browsing(driver: Firefox):
2628
"""
2729
C101670: Ensure no save password doorhanger shows up and settings are correct

0 commit comments

Comments
 (0)