Skip to content

Commit 03003b0

Browse files
sandrotosiionelmc
authored andcommitted
Stop trying to use cPickle, removed from python3
cPickle has been removed in python3, and since lazy-object-proxy now only supports python3, we can remove it. The effect of keeping it there is 300+ tests being skipped, confusing the test suite output
1 parent 7d47b27 commit 03003b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_lazy_object_proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1708,7 +1708,7 @@ def test_set_wrapped_regular(lop):
17081708
assert obj + 1 == 2
17091709

17101710

1711-
@pytest.fixture(params=["pickle", "cPickle"])
1711+
@pytest.fixture(params=["pickle", ])
17121712
def pickler(request):
17131713
return pytest.importorskip(request.param)
17141714

0 commit comments

Comments
 (0)