From 11918275b5dae306b50002808701bb03f985e367 Mon Sep 17 00:00:00 2001 From: Taegyun Kim Date: Thu, 19 Dec 2024 22:22:06 +0000 Subject: [PATCH] chore(profiling): update flaky marker --- tests/profiling/collector/test_stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/profiling/collector/test_stack.py b/tests/profiling/collector/test_stack.py index 690be4b183c..754061a0d4d 100644 --- a/tests/profiling/collector/test_stack.py +++ b/tests/profiling/collector/test_stack.py @@ -770,7 +770,7 @@ def _nothing(): assert values.pop() > 0 -@flaky(1731169861) +@flaky(1748750400) @pytest.mark.skipif(sys.version_info < (3, 11, 0), reason="PyFrameObjects are lazy-created objects in Python 3.11+") def test_collect_ensure_all_frames_gc(): # Regression test for memory leak with lazy PyFrameObjects in Python 3.11+