Skip to content

Commit 1a3c73a

Browse files
committed
TST: xfail statsmodels downstream test
xref gh-18362.
1 parent 311741c commit 1a3c73a

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

pandas/tests/test_downstream.py

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ def test_xarray(df):
5353
assert df.to_xarray() is not None
5454

5555

56+
@pytest.mark.xfail(reason="statsmodels needs to remove reference to WidePanel")
5657
def test_statsmodels():
5758

5859
statsmodels = import_module('statsmodels') # noqa

pandas/tests/test_panel.py

-3
Original file line numberDiff line numberDiff line change
@@ -2147,9 +2147,6 @@ def test_multiindex_get(self):
21472147
assert (f1.items == [1, 2]).all()
21482148
assert (f2.items == [1, 2]).all()
21492149

2150-
MultiIndex.from_tuples([('a', 1), ('a', 2), ('b', 1)],
2151-
names=['first', 'second'])
2152-
21532150
def test_multiindex_blocks(self):
21542151
with catch_warnings(record=True):
21552152
ind = MultiIndex.from_tuples([('a', 1), ('a', 2), ('b', 1)],

0 commit comments

Comments
 (0)