Skip to content

Commit dfd99f9

Browse files
authored
CI: filter json DeprecationWarning (#39868)
1 parent 46fc762 commit dfd99f9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/tests/io/json/test_json_table_schema.py

+3
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,9 @@ def test_read_json_table_timezones_orient(self, idx, vals, recwarn):
753753
result = pd.read_json(out, orient="table")
754754
tm.assert_frame_equal(df, result)
755755

756+
@pytest.mark.filterwarnings(
757+
"ignore:an integer is required (got type float)*:DeprecationWarning"
758+
)
756759
def test_comprehensive(self):
757760
df = DataFrame(
758761
{

0 commit comments

Comments
 (0)