We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ca8757 commit 9406937Copy full SHA for 9406937
pandas/tests/io/json/test_pandas.py
@@ -28,8 +28,6 @@
28
)
29
import pandas._testing as tm
30
31
-pytestmark = pytest.mark.skipif(PY310, reason="timeout with coverage")
32
-
33
_seriesd = tm.getSeriesData()
34
35
_frame = DataFrame(_seriesd)
@@ -1181,6 +1179,7 @@ def test_sparse(self):
1181
1179
expected = s.to_json()
1182
1180
assert expected == ss.to_json()
1183
+ @pytest.mark.skipif(PY310, reason="segfault GH 42130")
1184
@pytest.mark.parametrize(
1185
"ts",
1186
[
@@ -1198,6 +1197,7 @@ def test_tz_is_utc(self, ts):
1198
1197
dt = ts.to_pydatetime()
1199
assert dumps(dt, iso_dates=True) == exp
1200
1201
1202
"tz_range",
1203
0 commit comments