Skip to content

Commit 5c6ec1d

Browse files
committed
skip two modin tests with reason
1 parent d6972b5 commit 5c6ec1d

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

tests/playwright/shiny/components/data_frame/data_type/test_df_data_type.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@
4141
]
4242

4343

44-
@pytest.mark.skipif(sys.version_info >= (3, 13), reason="Skipping on Python 3.13")
44+
@pytest.mark.skipif(
45+
sys.version_info >= (3, 13),
46+
reason="Skipping on Python 3.13, since modin is not supported on 3.13",
47+
)
4548
def test_data_frame_data_type(
4649
page: Page,
4750
local_app: ShinyAppProc,

tests/playwright/shiny/components/table/test_table.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
import re
2+
import sys
23

4+
import pytest
35
from playwright.sync_api import Page
46

57
from shiny.playwright import controller
68
from shiny.run import ShinyAppProc
79

810

11+
@pytest.mark.skipif(
12+
sys.version_info >= (3, 13),
13+
reason="Skipping on Python 3.13, since modin is not supported on 3.13",
14+
)
915
def test_table_data_support(page: Page, local_app: ShinyAppProc) -> None:
1016
page.goto(local_app.url)
1117

0 commit comments

Comments
 (0)