From 97742dfac56f7c7fe3d6ebb732bf797fe22ae6ea Mon Sep 17 00:00:00 2001 From: Michael Adkins Date: Thu, 28 Oct 2021 19:21:05 +0000 Subject: [PATCH] Add `test_waits_for_flow_run_to_finish` to flaky tests (#5089) --- tests/tasks/prefect/test_flow_run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/tasks/prefect/test_flow_run.py b/tests/tasks/prefect/test_flow_run.py index 65baf172e1fb..4b36f44d834c 100644 --- a/tests/tasks/prefect/test_flow_run.py +++ b/tests/tasks/prefect/test_flow_run.py @@ -194,6 +194,7 @@ def test_does_not_allow_current_flow_run(self): ): get_task_run_result.run(flow_run_id="id", task_slug="foo") + @pytest.mark.flaky def test_waits_for_flow_run_to_finish(self, MockFlowRunView, monkeypatch): # Create a fake flow run that is 'Running' then 'Finished' flow_run = MagicMock()