Skip to content

Commit a3f675b

Browse files
schloerkeCopilot
andauthored
Skip test w/ modin for anyting >= 3.13
Co-authored-by: Copilot <[email protected]>
1 parent 41af702 commit a3f675b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010

1111
@pytest.mark.skipif(
12-
sys.version_info[:2] == (3, 13),
13-
reason="Skipping on Python 3.13, since modin is not supported on 3.13",
12+
sys.version_info >= (3, 13),
13+
reason="Skipping on Python 3.13 and above, since modin is not supported on these versions",
1414
)
1515
def test_table_data_support(page: Page, local_app: ShinyAppProc) -> None:
1616
page.goto(local_app.url)

0 commit comments

Comments
 (0)