Skip to content

WIP: try to debug segfault related issue #42518

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Test with pytest
run: |
ci/run_tests.sh
coverage run -m pytest -m "not slow and not network and not clipboard" pandas
# GH 41935
continue-on-error: true

Expand Down
3 changes: 0 additions & 3 deletions pandas/tests/io/json/test_pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

from pandas.compat import (
IS64,
PY310,
is_platform_windows,
)
import pandas.util._test_decorators as td
Expand Down Expand Up @@ -1178,7 +1177,6 @@ def test_sparse(self):
expected = s.to_json()
assert expected == ss.to_json()

@pytest.mark.skipif(PY310, reason="segfault GH 42130")
@pytest.mark.parametrize(
"ts",
[
Expand All @@ -1196,7 +1194,6 @@ def test_tz_is_utc(self, ts):
dt = ts.to_pydatetime()
assert dumps(dt, iso_dates=True) == exp

@pytest.mark.skipif(PY310, reason="segfault GH 42130")
@pytest.mark.parametrize(
"tz_range",
[
Expand Down