Skip to content

Commit 8347197

Browse files
committed
TST: failing wheel building on PY2 and old numpy
closes pandas-dev#25630
1 parent e28ae70 commit 8347197

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/frame/test_constructors.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import pandas as pd
2222
from pandas import (
2323
Categorical, DataFrame, Index, MultiIndex, Series, Timedelta, Timestamp,
24-
compat, date_range, isna)
24+
compat, date_range, isna, _np_version_under1p13)
2525
from pandas.tests.frame.common import TestData
2626
import pandas.util.testing as tm
2727

@@ -684,6 +684,8 @@ def test_constructor_ndarray(self):
684684
frame = DataFrame(['foo', 'bar'], index=[0, 1], columns=['A'])
685685
assert len(frame) == 2
686686

687+
@pytest.mark.skipif(PY2 & _np_version_under1p13,
688+
reason="old numpy & py2")
687689
def test_constructor_maskedarray(self):
688690
self._check_basic_constructor(ma.masked_all)
689691

0 commit comments

Comments
 (0)