Skip to content

Commit f29aaea

Browse files
committed
Put back skipif GHA
1 parent e7106da commit f29aaea

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/tabs/test_mute_tabs.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from os import environ
2+
13
import pytest
24
from selenium.webdriver import Firefox
35
from selenium.webdriver.common.by import By
@@ -21,6 +23,10 @@ def add_to_prefs_list():
2123
return [("network.cookie.cookieBehavior", "2")]
2224

2325

26+
GHA = environ.get("GITHUB_ACTIONS") == "true"
27+
28+
29+
@pytest.mark.skipif(GHA, reason="Test unstable in Github Actions")
2430
@pytest.mark.audio
2531
def test_mute_unmute_tab(screenshot, driver: Firefox, video_url: str):
2632
"""C134719, test that tabs can be muted and unmuted"""

0 commit comments

Comments
 (0)