From dc7cba5ce4fa85b7c76deb70f35f8aea65115364 Mon Sep 17 00:00:00 2001 From: jbrockmendel Date: Tue, 15 Dec 2020 17:02:10 -0800 Subject: [PATCH] Backport PR #38514: CI: un-xfail --- pandas/tests/io/test_parquet.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pandas/tests/io/test_parquet.py b/pandas/tests/io/test_parquet.py index fe3ca0d0937b3..99e7c3061d670 100644 --- a/pandas/tests/io/test_parquet.py +++ b/pandas/tests/io/test_parquet.py @@ -671,12 +671,7 @@ def test_s3_roundtrip(self, df_compat, s3_resource, pa, s3so): @pytest.mark.parametrize( "partition_col", [ - pytest.param( - ["A"], - marks=pytest.mark.xfail( - PY38, reason="Getting back empty DataFrame", raises=AssertionError - ), - ), + ["A"], [], ], )