Skip to content

Commit

Permalink
use strict=False
Browse files Browse the repository at this point in the history
  • Loading branch information
jreback committed Jun 27, 2019
1 parent 1a2e017 commit 25e8d1b
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 25e8d1b

Please sign in to comment.