Skip to content

Commit

Permalink
TST: Skip determinism check in Py3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Apr 21, 2021
1 parent ca7b0e8 commit 1491be9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/cloudpickle_test.py
Expand Up @@ -2323,6 +2323,9 @@ def __type__(self):
o = MyClass()
pickle_depickle(o, protocol=self.protocol)

@pytest.mark.skipif(
sys.version_info < (3, 6, 0),
reason="Dict determinism is a lost cause in Python < 3.6")
def test_sorted_globals(self):
vals = set()

Expand Down

0 comments on commit 1491be9

Please sign in to comment.