Skip to content

Commit

Permalink
drop! Pin seed to reproduce previous failure
Browse files Browse the repository at this point in the history
  • Loading branch information
nadove-ucsc committed Jun 20, 2023
1 parent dbb5566 commit 2645fec
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@
)
from random import (
Random,
randint,
)
import sys
import tempfile
import threading
import time
Expand Down Expand Up @@ -205,7 +203,7 @@ def setUp(self) -> None:
super().setUp()
# All random operations should be made using this seed so that test
# results are deterministically reproducible
self.random_seed = randint(0, sys.maxsize)
self.random_seed = 4257139765861885008
self.random = Random(self.random_seed)
log.info('Using random seed %r', self.random_seed)

Expand Down

0 comments on commit 2645fec

Please sign in to comment.