Skip to content

TST/CI: Skipif test_complibs #53819

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
Jun 23, 2023
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
8 changes: 4 additions & 4 deletions pandas/tests/io/pytables/test_file_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,11 @@ def test_complibs_default_settings_override(tmp_path, setup_path):
@pytest.mark.parametrize("lvl", range(10))
@pytest.mark.parametrize("lib", tables.filters.all_complibs)
@pytest.mark.filterwarnings("ignore:object name is not a valid")
@pytest.mark.xfail(
@pytest.mark.skipif(
not PY311 and is_ci_environment() and is_platform_linux(),
reason="producing invalid start bytes",
raises=UnicodeDecodeError,
strict=False,
reason="Segfaulting in a CI environment"
# with xfail, would sometimes raise UnicodeDecodeError
# invalid state byte
)
def test_complibs(tmp_path, lvl, lib):
# GH14478
Expand Down