Skip to content

Commit 9406937

Browse files
authored
CI: skip json tests for Python 3.10 #42130 (#42132)
1 parent 6ca8757 commit 9406937

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/json/test_pandas.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
)
2929
import pandas._testing as tm
3030

31-
pytestmark = pytest.mark.skipif(PY310, reason="timeout with coverage")
32-
3331
_seriesd = tm.getSeriesData()
3432

3533
_frame = DataFrame(_seriesd)
@@ -1181,6 +1179,7 @@ def test_sparse(self):
11811179
expected = s.to_json()
11821180
assert expected == ss.to_json()
11831181

1182+
@pytest.mark.skipif(PY310, reason="segfault GH 42130")
11841183
@pytest.mark.parametrize(
11851184
"ts",
11861185
[
@@ -1198,6 +1197,7 @@ def test_tz_is_utc(self, ts):
11981197
dt = ts.to_pydatetime()
11991198
assert dumps(dt, iso_dates=True) == exp
12001199

1200+
@pytest.mark.skipif(PY310, reason="segfault GH 42130")
12011201
@pytest.mark.parametrize(
12021202
"tz_range",
12031203
[

0 commit comments

Comments
 (0)