We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41af702 commit a3f675bCopy full SHA for a3f675b
tests/playwright/shiny/components/table/test_table.py
@@ -9,8 +9,8 @@
9
10
11
@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",
+ sys.version_info >= (3, 13),
+ reason="Skipping on Python 3.13 and above, since modin is not supported on these versions",
14
)
15
def test_table_data_support(page: Page, local_app: ShinyAppProc) -> None:
16
page.goto(local_app.url)
0 commit comments