File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
packages/debugger/src/robotcode/debugger/launcher Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 565565 "robotcode.debug.attachPython" : {
566566 "type" : " boolean" ,
567567 "description" : " Attach also the python debugger if a robot test starts." ,
568- "default" : true ,
568+ "default" : false ,
569569 "scope" : " resource"
570570 },
571571 "robotcode.debug.outputMessages" : {
893893 "attachPython" : {
894894 "type" : " boolean" ,
895895 "description" : " Attach also the python debugger if a robot test starts." ,
896- "default" : true
896+ "default" : false
897897 },
898898 "attachPythonPort" : {
899899 "type" : " number" ,
990990 "attachPython" : {
991991 "type" : " boolean" ,
992992 "description" : " Attach also the python debugger if a robot test starts." ,
993- "default" : true
993+ "default" : false
994994 },
995995 "attachPythonPort" : {
996996 "type" : " number" ,
11771177 "presentation" : {
11781178 "hidden" : true
11791179 },
1180- "attachPython" : true ,
1180+ "attachPython" : false ,
11811181 "pythonConfiguration" : " RobotCode: Python"
11821182 },
11831183 {
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ async def _launch(
152152 launcherTimeout : Optional [int ] = None , # noqa: N803
153153 debuggerArgs : Optional [List [str ]] = None , # noqa: N803
154154 debuggerTimeout : Optional [int ] = None , # noqa: N803
155- attachPython : Optional [bool ] = True , # noqa: N803
155+ attachPython : Optional [bool ] = False , # noqa: N803
156156 attachPythonPort : Optional [int ] = None , # noqa: N803
157157 variables : Optional [Dict [str , Any ]] = None ,
158158 outputDir : Optional [str ] = None , # noqa: N803
You can’t perform that action at this time.
0 commit comments