Skip to content

Commit 802b3ee

Browse files
Backport PR #39868: CI: filter json DeprecationWarning (#39870)
Co-authored-by: jbrockmendel <[email protected]>
1 parent 2b8463b commit 802b3ee

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
@@ -745,6 +745,9 @@ def test_read_json_table_timezones_orient(self, idx, vals, recwarn):
745745
result = pd.read_json(out, orient="table")
746746
tm.assert_frame_equal(df, result)
747747

748+
@pytest.mark.filterwarnings(
749+
"ignore:an integer is required (got type float)*:DeprecationWarning"
750+
)
748751
def test_comprehensive(self):
749752
df = DataFrame(
750753
{

0 commit comments

Comments
 (0)