Skip to content

Commit e7f8e76

Browse files
author
perovskite
committed
Ignore E2E tests for Windows
1 parent e68cdd4 commit e7f8e76

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/test_anywidget.py

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

34
import anywidget
45
import panel as pn
6+
import pytest
57
import traitlets
68
from panel.io.server import serve
79
from playwright.sync_api import expect, Page
810

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

1015
class CounterWidget(anywidget.AnyWidget):
1116
"""Counter widget example."""

0 commit comments

Comments
 (0)