Skip to content

Commit c01ee01

Browse files
author
OlivierLuG
committed
CI/TST pandas-dev#34131 fixed test_floordiv_axis0_numexpr_path
1 parent a493fe1 commit c01ee01

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/tests/frame/test_arithmetic.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -374,13 +374,12 @@ def test_floordiv_axis0(self):
374374
result2 = df.floordiv(ser.values, axis=0)
375375
tm.assert_frame_equal(result2, expected)
376376

377-
@pytest.mark.slow
378377
@pytest.mark.parametrize("opname", ["floordiv", "pow"])
379378
def test_floordiv_axis0_numexpr_path(self, opname):
380379
# case that goes through numexpr and has to fall back to masked_arith_op
381380
op = getattr(operator, opname)
382381

383-
arr = np.arange(10 ** 6).reshape(100, -1)
382+
arr = np.arange(10 ** 3).reshape(100, -1) * 1000
384383
df = pd.DataFrame(arr)
385384
df["C"] = 1.0
386385

0 commit comments

Comments
 (0)