Unverified Commit 545ef625 authored by Marius van den Beek's avatar Marius van den Beek Committed by GitHub
Browse files

Merge pull request #18498 from mvdbeek/stabilize_test_purge_while_job_running

[24.1] Stabilize test_purge_while_job_running test
parents ed81681f e395ea7d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
        )
+1 −1
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ class TestExtendedMetadataIntegration(integration_util.IntegrationTestCase):
    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):