Skip to content

Commit bf60ba2

Browse files
committed
Removed xfails
1 parent ec55f9b commit bf60ba2

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

pandas/tests/io/parser/test_network.py

-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ def test_read_csv_handles_boto_s3_object(self,
183183
expected = read_csv(tips_file)
184184
tm.assert_frame_equal(result, expected)
185185

186-
@pytest.mark.xfail(reason="buggy s3 / moto interaction on CI: gh-20720")
187186
def test_read_csv_chunked_download(self, s3_resource, caplog):
188187
# 8 MB, S3FS usees 5MB chunks
189188
df = DataFrame(np.random.randn(100000, 4), columns=list('abcd'))

pandas/tests/io/test_parquet.py

-2
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,6 @@ def test_categorical_unsupported(self, pa_lt_070):
432432
df = pd.DataFrame({'a': pd.Categorical(list('abc'))})
433433
self.check_error_on_write(df, pa, NotImplementedError)
434434

435-
@pytest.mark.xfail(reason="buggy s3 / moto interaction on CI: gh-20720")
436435
def test_s3_roundtrip(self, df_compat, s3_resource, pa):
437436
# GH #19134
438437
check_round_trip(df_compat, pa,
@@ -499,7 +498,6 @@ def test_filter_row_groups(self, fp):
499498
result = read_parquet(path, fp, filters=[('a', '==', 0)])
500499
assert len(result) == 1
501500

502-
@pytest.mark.xfail(reason="buggy s3 / moto interaction on CI: gh-20720")
503501
def test_s3_roundtrip(self, df_compat, s3_resource, fp):
504502
# GH #19134
505503
check_round_trip(df_compat, fp,

0 commit comments

Comments
 (0)