From 8a7732fa9c288f2c5bd148ac13c04393f5fd69de Mon Sep 17 00:00:00 2001 From: monkey-debugger <64543651+monkey-debugger@users.noreply.github.com> Date: Thu, 30 Sep 2021 16:24:15 +0200 Subject: [PATCH 1/2] Fixed PyCharm debugger timeouts --- pytest_timeout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest_timeout.py b/pytest_timeout.py index d420b82..5b17605 100644 --- a/pytest_timeout.py +++ b/pytest_timeout.py @@ -40,7 +40,7 @@ # bdb covers pdb, ipdb, and possibly others # pydevd covers PyCharm, VSCode, and possibly others -KNOWN_DEBUGGING_MODULES = {"pydevd", "bdb"} +KNOWN_DEBUGGING_MODULES = {"pydevd", "bdb", "pydevd_frame_evaluator"} Settings = namedtuple("Settings", ["timeout", "method", "func_only"]) From 0999b2851bc17562677953663e78fc9fe31c72b0 Mon Sep 17 00:00:00 2001 From: monkey-debugger <64543651+monkey-debugger@users.noreply.github.com> Date: Wed, 6 Oct 2021 22:17:42 +0200 Subject: [PATCH 2/2] Updated changelog --- README.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.rst b/README.rst index b2167e2..cbc7ae3 100644 --- a/README.rst +++ b/README.rst @@ -228,6 +228,11 @@ session using ``--pdb`` or similar. Changelog ========= +2.1.1 +----- + +- Fixed disabling the timeout when using the PyCharm Debugger. Thanks monkey-debugger. + 2.1.0 -----