Skip to content

Commit fb70cee

Browse files
authored
Skip test on Linux (#906)
1 parent 47e84af commit fb70cee

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/tabs/test_play_mute_unmute_tabs_via_toggle.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from os import environ
2+
from platform import system
23
from time import sleep
34

45
import pytest
@@ -29,6 +30,7 @@ def add_to_prefs_list():
2930
@pytest.mark.audio
3031
@pytest.mark.headed
3132
@pytest.mark.skipif(GHA, reason="Test unstable in Github Actions")
33+
@pytest.mark.skipif(system().lower().startswith("linux"), reason="Bug 2001204")
3234
def test_play_mute_unmute_tabs_via_toggle(driver: Firefox, sys_platform: str):
3335
"""
3436
C246981 - Verify that play/mute/unmute tabs via toggle audio works

0 commit comments

Comments
 (0)