Skip to content

Commit

Permalink
Increase wait time for TestGalaxyDatasets.test_download_dataset test
Browse files Browse the repository at this point in the history
It keeps failing in TraviCI under macOS.
  • Loading branch information
nsoranzo committed Jan 25, 2020
1 parent 53b038d commit 8f61859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioblend/_tests/TestGalaxyDatasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def test_download_dataset(self):
try:
downloaded_dataset = self.gi.datasets.download_dataset(
self.dataset_id, file_path=tempdir,
maxwait=GalaxyTestBase.BIOBLEND_TEST_JOB_TIMEOUT)
maxwait=GalaxyTestBase.BIOBLEND_TEST_JOB_TIMEOUT * 2)
self.assertTrue(downloaded_dataset.startswith(tempdir))
with open(downloaded_dataset, 'rb') as f:
self.assertEqual(f.read(), expected_contents)
Expand Down

0 comments on commit 8f61859

Please sign in to comment.