From 2bd1db827d3cc2989b06e93d4bb6d815813a5ece Mon Sep 17 00:00:00 2001 From: Ben Frederickson Date: Thu, 10 Oct 2024 15:50:03 -0700 Subject: [PATCH] . --- tests/integration_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration_test.py b/tests/integration_test.py index 9669f089..7d34ed6f 100644 --- a/tests/integration_test.py +++ b/tests/integration_test.py @@ -69,6 +69,7 @@ def _sample_process(self, script_name, options=None, include_profile_name=False) def test_longsleep(self): # running with the gil flag should have ~ no samples returned profile = self._sample_process(_get_script("longsleep.py"), GIL) + print(profile) assert sum(profile.values()) <= 5 # running with the idle flag should have > 95% of samples in the sleep call