Skip to content

Commit c9fe5d3

Browse files
committed
make strict
1 parent 7ef697c commit c9fe5d3

File tree

1 file changed

+2
-1
lines changed
  • pandas/tests/extension/base

1 file changed

+2
-1
lines changed

pandas/tests/extension/base/ops.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ def test_arith_series_with_scalar(self, data, all_arithmetic_operators):
5858
s = pd.Series(data)
5959
self.check_opname(s, op_name, s.iloc[0], exc=TypeError)
6060

61-
@pytest.mark.xfail(run=False, reason="_reduce needs implementation")
61+
@pytest.mark.xfail(run=False, reason="_reduce needs implementation",
62+
strict=True)
6263
def test_arith_frame_with_scalar(self, data, all_arithmetic_operators):
6364
# frame & scalar
6465
op_name = all_arithmetic_operators

0 commit comments

Comments
 (0)