add a no-cover for py3 [ci skip]

This commit is contained in:
Anthony Sottile
2018-12-26 22:45:13 -08:00
parent 1d40cc2104
commit 2b8291d18f

View File

@@ -75,7 +75,7 @@ def _shuffled(seq):
fixed_random = random.Random()
if six.PY2: # pragma: no cover (py2)
fixed_random.seed(FIXED_RANDOM_SEED)
else:
else: # pragma: no cover (py3)
fixed_random.seed(FIXED_RANDOM_SEED, version=1)
seq = list(seq)