Skip to content

Commit

Permalink
Use skipif instead of xfailif
Browse files Browse the repository at this point in the history
  • Loading branch information
ogrisel committed Jun 19, 2024
1 parent c32518c commit 740399f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cloudpickle_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2479,7 +2479,7 @@ def inner_function():
inner_func = depickled_factory()
assert inner_func() == _TEST_GLOBAL_VARIABLE

@pytest.mark.xfailif(
@pytest.mark.skipif(
sys.version_info < (3, 9),
reason="Can cause CPython 3.8 to segfault",
)
Expand Down

0 comments on commit 740399f

Please sign in to comment.