Skip to content

Commit b21e2b1

Browse files
author
perovskite
committed
Remove windows e2e tests from ci
1 parent ac92e56 commit b21e2b1

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.github/workflows/ipywidgets-bokeh-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
python -m playwright install --with-deps
7272
7373
- name: Run Playwright & Python tests
74-
if: success() || failure()
74+
if: matrix.os != windows-latest
7575
run: |
7676
pytest
7777

tests/test_anywidget.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
1-
import sys
21
import time
32

43
import anywidget
54
import panel as pn
6-
import pytest
75
import traitlets
86
from panel.io.server import serve
97
from playwright.sync_api import expect, Page
108

11-
if sys.platform.startswith("win"):
12-
pytest.skip(reason="Skipping E2E tests on Windows.", allow_module_level=True)
13-
149

1510
class CounterWidget(anywidget.AnyWidget):
1611
"""Counter widget example."""

0 commit comments

Comments
 (0)