Skip to content

Commit 432baca

Browse files
committed
Merge branch 'skip-modin-3.13-tests' of https://github.com/posit-dev/py-shiny into skip-modin-3.13-tests
2 parents b276d57 + 425ffbf commit 432baca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343

4444
@pytest.mark.skipif(
45-
sys.version_info >= (3, 13),
45+
sys.version_info[:2] == (3, 13),
4646
reason="Skipping on Python 3.13, since modin is not supported on 3.13",
4747
)
4848
def test_data_frame_data_type(

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

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

0 commit comments

Comments
 (0)