Skip to content

CI: skip segfault tests for array manager #44999

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

Merged
merged 1 commit into from
Dec 21, 2021
Merged
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
15 changes: 12 additions & 3 deletions pandas/tests/io/json/test_json_table_schema_ext_dtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,10 @@ def setup_method(self, method):
}
)

def test_build_date_series(self):
def test_build_date_series(self, using_array_manager):
if using_array_manager:
pytest.skip("Segfault for array manager GH44994")

s = Series(self.da, name="a")
s.index.name = "id"
result = s.to_json(orient="table", date_format="iso")
Expand All @@ -156,7 +159,10 @@ def test_build_date_series(self):

assert result == expected

def test_build_decimal_series(self):
def test_build_decimal_series(self, using_array_manager):
if using_array_manager:
pytest.skip("Segfault for array manager GH44994")

s = Series(self.dc, name="a")
s.index.name = "id"
result = s.to_json(orient="table", date_format="iso")
Expand Down Expand Up @@ -231,7 +237,10 @@ def test_build_int64_series(self):

assert result == expected

def test_to_json(self):
def test_to_json(self, using_array_manager):
if using_array_manager:
pytest.skip("Segfault for array manager GH44994")

df = self.df.copy()
df.index.name = "idx"
result = df.to_json(orient="table", date_format="iso")
Expand Down