Skip to content

Commit

Permalink
Fix: IT subtests manifest and repository_files fail due to lack of fi…
Browse files Browse the repository at this point in the history
…les (#5168)
  • Loading branch information
nadove-ucsc authored and dsotirho-ucsc committed Jun 15, 2023
1 parent 794cfa6 commit 57b6132
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions test/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,13 +205,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 = (
# FIXME: Unpin the seed once underlying issue is fixed
# https://github.com/DataBiosphere/azul/issues/5168
6634795309975096822
if config.deployment_stage == 'anvilprod' else
randint(0, sys.maxsize)
)
self.random_seed = randint(0, sys.maxsize)
self.random = Random(self.random_seed)
log.info('Using random seed %r', self.random_seed)

Expand Down Expand Up @@ -332,7 +326,8 @@ def _list_bundles(self,
self.random.shuffle(sources)
if public_1st:
managed_access_sources = frozenset(
map(str, self.managed_access_sources_by_catalog[catalog])
str(source.spec)
for source in self.managed_access_sources_by_catalog[catalog]
)
index = first(
i
Expand Down

0 comments on commit 57b6132

Please sign in to comment.