File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 9
9
import pytest
10
10
11
11
from pandas .compat import is_platform_little_endian
12
+ from pandas .compat .numpy import _is_numpy_dev
12
13
13
14
from pandas .core .dtypes .common import is_integer_dtype
14
15
@@ -144,6 +145,7 @@ def test_constructor_dtype_list_data(self):
144
145
assert df .loc [1 , 0 ] is None
145
146
assert df .loc [0 , 1 ] == "2"
146
147
148
+ @pytest .mark .xfail (_is_numpy_dev , reason = "Interprets list of frame as 3D" )
147
149
def test_constructor_list_frames (self ):
148
150
# see gh-3243
149
151
result = DataFrame ([DataFrame ()])
@@ -496,6 +498,7 @@ def test_constructor_error_msgs(self):
496
498
with pytest .raises (ValueError , match = msg ):
497
499
DataFrame ({"a" : False , "b" : True })
498
500
501
+ @pytest .mark .xfail (_is_numpy_dev , reason = "Interprets embedded frame as 3D" )
499
502
def test_constructor_with_embedded_frames (self ):
500
503
501
504
# embedded data frames
You can’t perform that action at this time.
0 commit comments