We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a493fe1 commit c01ee01Copy full SHA for c01ee01
pandas/tests/frame/test_arithmetic.py
@@ -374,13 +374,12 @@ def test_floordiv_axis0(self):
374
result2 = df.floordiv(ser.values, axis=0)
375
tm.assert_frame_equal(result2, expected)
376
377
- @pytest.mark.slow
378
@pytest.mark.parametrize("opname", ["floordiv", "pow"])
379
def test_floordiv_axis0_numexpr_path(self, opname):
380
# case that goes through numexpr and has to fall back to masked_arith_op
381
op = getattr(operator, opname)
382
383
- arr = np.arange(10 ** 6).reshape(100, -1)
+ arr = np.arange(10 ** 3).reshape(100, -1) * 1000
384
df = pd.DataFrame(arr)
385
df["C"] = 1.0
386
0 commit comments