Skip to content

Commit 7ae3098

Browse files
CI: Skip test for 3.7.0 exactly (#35310)
xref #35309
1 parent 1fa3747 commit 7ae3098

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/io/json/test_json_table_schema.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""Tests for Table Schema integration."""
22
from collections import OrderedDict
33
import json
4+
import sys
45

56
import numpy as np
67
import pytest
@@ -671,6 +672,7 @@ class TestTableOrientReader:
671672
{"bools": [True, False, False, True]},
672673
],
673674
)
675+
@pytest.mark.skipif(sys.version_info[:3] == (3, 7, 0), reason="GH-35309")
674676
def test_read_json_table_orient(self, index_nm, vals, recwarn):
675677
df = DataFrame(vals, index=pd.Index(range(4), name=index_nm))
676678
out = df.to_json(orient="table")

0 commit comments

Comments
 (0)