From 13e2c29b795157eb01543ed0815548a7c11d2b3d Mon Sep 17 00:00:00 2001 From: David Rubinstein Date: Mon, 2 Oct 2023 22:07:47 -0400 Subject: [PATCH] Enable faulthandler --- tests/test_inference.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_inference.py b/tests/test_inference.py index 02ce64ea..77334d13 100644 --- a/tests/test_inference.py +++ b/tests/test_inference.py @@ -15,6 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. +import faulthandler import os import pathlib import tempfile @@ -36,6 +37,8 @@ RESOURCES_PATH = pathlib.Path(__file__).parent / "resources" +faulthandler.enable() + class TestPredict(unittest.TestCase): def test_predict(self) -> None: