Skip to content
Merged
Changes from 7 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
4 changes: 4 additions & 0 deletions tests/cloudpickle_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2511,6 +2511,10 @@ def inner_function():
sys.version_info < (3, 9),
reason="Can cause CPython 3.8 to segfault",
)
@pytest.mark.skipif(
sys.version_info > (3, 14),
reason="Can cause CPython 3.14 to segfault",
)
# TODO: remove this xfail when we drop support for Python 3.8. We don't
# plan to fix it because Python 3.8 is EOL.
def test_recursion_during_pickling(self):
Expand Down