@@ -80,13 +80,14 @@ def df_compat():
80
80
def df_cross_compat ():
81
81
df = pd .DataFrame ({'a' : list ('abc' ),
82
82
'b' : list (range (1 , 4 )),
83
- 'c' : np .arange (3 , 6 ).astype ('u1' ),
83
+ # 'c': np.arange(3, 6).astype('u1'),
84
84
'd' : np .arange (4.0 , 7.0 , dtype = 'float64' ),
85
85
'e' : [True , False , True ],
86
86
'f' : pd .date_range ('20130101' , periods = 3 ),
87
- 'g' : pd .date_range ('20130101' , periods = 3 ,
88
- tz = 'US/Eastern' ),
89
- 'h' : pd .date_range ('20130101' , periods = 3 , freq = 'ns' )})
87
+ # 'g': pd.date_range('20130101', periods=3,
88
+ # tz='US/Eastern'),
89
+ # 'h': pd.date_range('20130101', periods=3, freq='ns')
90
+ })
90
91
return df
91
92
92
93
@@ -173,7 +174,6 @@ def test_options_get_engine(fp, pa):
173
174
assert isinstance (get_engine ('fastparquet' ), FastParquetImpl )
174
175
175
176
176
- @pytest .mark .xfail (reason = "fp does not ignore pa index __index_level_0__" )
177
177
def test_cross_engine_pa_fp (df_cross_compat , pa , fp ):
178
178
# cross-compat with differing reading/writing engines
179
179
@@ -185,7 +185,6 @@ def test_cross_engine_pa_fp(df_cross_compat, pa, fp):
185
185
tm .assert_frame_equal (result , df )
186
186
187
187
188
- @pytest .mark .xfail (reason = "pyarrow reading fp in some cases" )
189
188
def test_cross_engine_fp_pa (df_cross_compat , pa , fp ):
190
189
# cross-compat with differing reading/writing engines
191
190
0 commit comments