Skip to content

Commit

Permalink
Merge pull request #18498 from mvdbeek/stabilize_test_purge_while_job…
Browse files Browse the repository at this point in the history
…_running

[24.1] Stabilize test_purge_while_job_running test
  • Loading branch information
mvdbeek authored Jul 5, 2024
2 parents ed81681 + e395ea7 commit 545ef62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/integration/objectstore/_purged_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def purge_while_job_running(dataset_populator: DatasetPopulator, extra_sleep=0):
response = dataset_populator.run_tool(
"all_output_types",
inputs={
"sleep_param": 5,
"sleep_param": 5 + extra_sleep,
},
history_id=history_id,
)
Expand Down
2 changes: 1 addition & 1 deletion test/integration/test_extended_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def test_fetch_data_library(self):
def test_purge_while_job_running(self):
# pass extra_sleep, since templating the command line will fail if the output
# is deleted before remote_tool_eval runs.
purge_while_job_running(self.dataset_populator, extra_sleep=4)
purge_while_job_running(self.dataset_populator, extra_sleep=10)


class TestExtendedMetadataDeferredIntegration(integration_util.IntegrationTestCase):
Expand Down

0 comments on commit 545ef62

Please sign in to comment.