There was an error while loading. Please reload this page.
__init__.robot
1 parent eaef46b commit 34da5e7Copy full SHA for 34da5e7
packages/debugger/src/robotcode/debugger/debugger.py
@@ -930,7 +930,8 @@ def add_stackframe_entry(
930
) -> StackFrameEntry:
931
path = pathlib.Path(source) if source is not None else None
932
is_file = path is not None and path.is_file()
933
- if path is not None and not is_file and type in ["SETUP", "TEARDOWN"]:
+
934
+ if path is not None and not is_file:
935
init_path = pathlib.Path(path, "__init__.robot")
936
if init_path.exists() and init_path.is_file():
937
is_file = True
0 commit comments