From 2fd1196b4260addce21d607f8273eeb667b6f9f4 Mon Sep 17 00:00:00 2001 From: Andrew Truong Date: Tue, 17 Dec 2024 12:38:58 -0500 Subject: [PATCH] chore(weave): Increase import test time #3272 --- tests/trace/test_import.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/trace/test_import.py b/tests/trace/test_import.py index 0cd63c78c36..085461a0bcd 100644 --- a/tests/trace/test_import.py +++ b/tests/trace/test_import.py @@ -9,5 +9,5 @@ def test_import_not_slow(monkeypatch): import_time = run_single_import() - # Ideally the import takes < 1s, but in CI it can take up to 3s. - assert import_time < 3, f"Import time was {import_time} seconds" + # Ideally the import takes < 1s, but in CI it can take up to 4s. + assert import_time < 4, f"Import time was {import_time} seconds"