Skip to content

Commit b4d814c

Browse files
TEST: Trying to enable testing with Firefox on Windows again
1 parent a7643c0 commit b4d814c

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,8 @@ jobs:
2727
browser: ["firefox", "chrome", "edge"]
2828
headless: [true]
2929
exclude:
30-
# Can't install firefox using setup-firefox on Windows
31-
# See the issues below
32-
# * https://github.com/browser-actions/setup-firefox/issues/252
33-
# * https://github.com/abhi1693/setup-browser/issues/8
3430
- os: windows-latest
35-
browser: "firefox"
31+
browser: "edge"
3632
# For now, the edge setup on linux amd64 is not working (07/2024)
3733
# See the issues below
3834
# * https://github.com/browser-actions/setup-edge/issues/386

tests/test_browser.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,9 @@
44

55
from PIL import Image, ImageFile
66
from botcity.web import WebBot, By
7-
from pytest import xfail
87

98

109
def test_context(web: WebBot):
11-
if web.browser.lower() in 'edge':
12-
xfail(reason=f"Edge is getting stuck in the CI")
13-
1410
with web:
1511
web.browse(conftest.INDEX_PAGE)
1612
assert web.driver

0 commit comments

Comments
 (0)