Skip to content

Commit 20d3168

Browse files
authored
TST: remove non-strict xfails (#44728)
1 parent ef50cd6 commit 20d3168

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

pandas/tests/io/json/test_pandas.py

-5
Original file line numberDiff line numberDiff line change
@@ -1741,11 +1741,6 @@ def test_json_multiindex(self, dataframe, expected):
17411741
result = series.to_json(orient="index")
17421742
assert result == expected
17431743

1744-
@pytest.mark.xfail(
1745-
is_platform_windows(),
1746-
reason="localhost connection rejected",
1747-
strict=False,
1748-
)
17491744
def test_to_s3(self, s3_resource, s3so):
17501745
import time
17511746

pandas/tests/io/test_parquet.py

-6
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
from pandas._config import get_option
1515

16-
from pandas.compat import is_platform_windows
1716
from pandas.compat.pyarrow import (
1817
pa_version_under2p0,
1918
pa_version_under5p0,
@@ -735,11 +734,6 @@ def test_categorical(self, pa):
735734

736735
check_round_trip(df, pa)
737736

738-
@pytest.mark.xfail(
739-
is_platform_windows(),
740-
reason="localhost connection rejected",
741-
strict=False,
742-
)
743737
def test_s3_roundtrip_explicit_fs(self, df_compat, s3_resource, pa, s3so):
744738
s3fs = pytest.importorskip("s3fs")
745739
s3 = s3fs.S3FileSystem(**s3so)

0 commit comments

Comments
 (0)