@@ -1174,7 +1174,6 @@ def test_non_nanosecond_timestamps(self, temp_file):
1174
1174
1175
1175
1176
1176
class TestParquetFastParquet (Base ):
1177
- @pytest .mark .xfail (reason = "datetime_with_nat gets incorrect values" )
1178
1177
def test_basic (self , fp , df_full ):
1179
1178
pytz = pytest .importorskip ("pytz" )
1180
1179
tz = pytz .timezone ("US/Eastern" )
@@ -1213,10 +1212,6 @@ def test_duplicate_columns(self, fp):
1213
1212
msg = "Cannot create parquet dataset with duplicate column names"
1214
1213
self .check_error_on_write (df , fp , ValueError , msg )
1215
1214
1216
- @pytest .mark .xfail (
1217
- Version (np .__version__ ) >= Version ("2.0.0" ),
1218
- reason = "fastparquet uses np.float_ in numpy2" ,
1219
- )
1220
1215
def test_bool_with_none (self , fp ):
1221
1216
df = pd .DataFrame ({"a" : [True , None , False ]})
1222
1217
expected = pd .DataFrame ({"a" : [1.0 , np .nan , 0.0 ]}, dtype = "float16" )
@@ -1331,9 +1326,6 @@ def test_empty_dataframe(self, fp):
1331
1326
expected = df .copy ()
1332
1327
check_round_trip (df , fp , expected = expected )
1333
1328
1334
- @pytest .mark .xfail (
1335
- reason = "fastparquet bug, see https://github.com/dask/fastparquet/issues/929"
1336
- )
1337
1329
def test_timezone_aware_index (self , fp , timezone_aware_date_list ):
1338
1330
idx = 5 * [timezone_aware_date_list ]
1339
1331
0 commit comments