From b47b488e3dca00d241daaccf4d155a2440a8d0ae Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Sun, 23 Aug 2020 12:32:30 +0300 Subject: [PATCH] testing: fix flaky test when executed slowly The 0-1 was a bit too optimistic: CI got "no tests ran in 3.98s". --- testing/logging/test_reporting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/logging/test_reporting.py b/testing/logging/test_reporting.py index bab28aea4ef..7590b576289 100644 --- a/testing/logging/test_reporting.py +++ b/testing/logging/test_reporting.py @@ -899,7 +899,7 @@ def test_simple(): expected_lines.extend( [ "*test_collection_collect_only_live_logging.py::test_simple*", - "no tests ran in [0-1].[0-9][0-9]s", + "no tests ran in [0-9].[0-9][0-9]s", ] ) elif verbose == "-qq":