Skip to content

Commit b5741b5

Browse files
committed
disable theme test on win, bug 1974109
1 parent eb816b8 commit b5741b5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/theme_and_toolbar/test_customize_themes_and_redirect.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from platform import system
2+
13
import pytest
24
from selenium.webdriver import Firefox
35

@@ -32,6 +34,7 @@ def test_redirect_to_addons(driver: Firefox):
3234
assert driver.current_url == "about:addons"
3335

3436

37+
@pytest.mark.skipif(system().lower().startswith("win"), reason="Bug 1974109")
3538
@pytest.mark.parametrize("theme_name", list(themes.keys()))
3639
def test_open_addons(driver: Firefox, theme_name: str):
3740
"""
@@ -56,6 +59,7 @@ def test_open_addons(driver: Firefox, theme_name: str):
5659
abt_addons.activate_theme(nav, theme_name, themes[theme_name])
5760

5861

62+
@pytest.mark.skipif(system().lower().startswith("win"), reason="Bug 1974109")
5963
def test_alpenglow_theme(driver: Firefox):
6064
"""
6165
C118173, specifically for alpenglow theme because color can be two values for dark or light mode

0 commit comments

Comments
 (0)