Skip to content

Commit 0c09bd1

Browse files
committed
TST: skip complex128 numexpr/numpy tests on windows
1 parent 2ce897f commit 0c09bd1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/computation/tests/test_eval.py

+5
Original file line numberDiff line numberDiff line change
@@ -1630,6 +1630,11 @@ def test_result_types(self):
16301630
self.check_result_type(np.int64, np.float64)
16311631
self.check_result_type(np.float32, np.float32)
16321632
self.check_result_type(np.float64, np.float64)
1633+
1634+
def test_result_types2(self):
1635+
# xref https://github.com/pydata/pandas/issues/12293
1636+
tm._skip_if_windows()
1637+
16331638
# Did not test complex64 because DataFrame is converting it to
16341639
# complex128. Due to https://github.com/pydata/pandas/issues/10952
16351640
self.check_result_type(np.complex128, np.complex128)

0 commit comments

Comments
 (0)