Skip to content

Commit

Permalink
CI pandas-dev#34131 fix tests failure
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierLuG committed Jun 13, 2020
1 parent bbf80ce commit 408da4a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pandas/tests/frame/test_arithmetic.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@
import pandas as pd
from pandas import DataFrame, MultiIndex, Series
import pandas._testing as tm
from pandas.core.computation.expressions import _USE_NUMEXPR, _MIN_ELEMENTS
from pandas.core.computation.expressions import (
_USE_NUMEXPR,
_MIN_ELEMENTS,
_NUMEXPR_INSTALLED,
)
import pandas.core.common as com
from pandas.tests.frame.common import _check_mixed_float, _check_mixed_int

Expand Down Expand Up @@ -384,6 +388,8 @@ def test_floordiv_axis0_numexpr_path(self, opname):
df = pd.DataFrame(arr)
if _NUMEXPR_INSTALLED:
assert _USE_NUMEXPR
else:
return
df["C"] = 1.0

ser = df[0]
Expand Down

0 comments on commit 408da4a

Please sign in to comment.