Skip to content

Commit 3b6a2fd

Browse files
TST: Fix failing tests for minimum version by ignoring obsolete deprecation warning
1 parent 5d23a26 commit 3b6a2fd

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

pandas/tests/reshape/test_pivot.py

+6
Original file line numberDiff line numberDiff line change
@@ -2853,6 +2853,12 @@ def test_pivot_margins_with_none_index(self):
28532853
)
28542854
tm.assert_frame_equal(result, expected)
28552855

2856+
# Ignore deprecation raised by old versions of pyarrow. Already fixed
2857+
# in newer versions
2858+
@pytest.mark.filterwarnings(
2859+
"ignore::DeprecationWarning:'Passing a BlockManager to DataFrame is "
2860+
"deprecated and will raise in a future version. Use public APIs instead.'"
2861+
)
28562862
def test_pivot_with_pyarrow_categorical(self):
28572863
# GH#53051
28582864

pandas/tests/test_multilevel.py

+6
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,12 @@ def test_multiindex_dt_with_nan(self):
319319
expected = Series(["a", "b", "c", "d"], name=("sub", np.nan))
320320
tm.assert_series_equal(result, expected)
321321

322+
# Ignore deprecation raised by old versions of pyarrow. Already fixed
323+
# in newer versions
324+
@pytest.mark.filterwarnings(
325+
"ignore::DeprecationWarning:'Passing a BlockManager to DataFrame is "
326+
"deprecated and will raise in a future version. Use public APIs instead.'"
327+
)
322328
def test_multiindex_with_pyarrow_categorical(self):
323329
# GH#53051
324330

0 commit comments

Comments
 (0)