Skip to content
Prev Previous commit
Next Next commit
use strict=False
  • Loading branch information
jreback committed Jun 27, 2019
commit 41e11e130347466f7d0c9d4dd5aba390282b85bb
3 changes: 2 additions & 1 deletion pandas/tests/sparse/test_pivot.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ def test_pivot_table(self):
# tm.assert_frame_equal(res_sparse, res_dense)

@pytest.mark.xfail(not _np_version_under1p17,
reason="failing occasionally on numpy > 1.17")
reason="failing occasionally on numpy > 1.17",
strict=False)
def test_pivot_table_multi(self):
res_sparse = pd.pivot_table(self.sparse, index='A', columns='B',
values=['D', 'E'])
Expand Down