From cb71d9c737a94a8eb7e12d2d2d2bbe94881380e2 Mon Sep 17 00:00:00 2001 From: Austin Macdonald Date: Wed, 21 Aug 2024 09:54:11 -0500 Subject: [PATCH] Relax time requirement to prevent flake --- test/test_execution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_execution.py b/test/test_execution.py index 937db4a5..904a1df5 100644 --- a/test/test_execution.py +++ b/test/test_execution.py @@ -30,7 +30,7 @@ def test_sanity_green(temp_output_dir: str) -> None: ) t0 = time() assert execute(args) == 0 - assert time() - t0 < 0.2 # we should not wait for a sample or report interval + assert time() - t0 < 0.4 # we should not wait for a sample or report interval assert_expected_files(temp_output_dir)