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 565
565
"robotcode.debug.attachPython" : {
566
566
"type" : " boolean" ,
567
567
"description" : " Attach also the python debugger if a robot test starts." ,
568
- "default" : true ,
568
+ "default" : false ,
569
569
"scope" : " resource"
570
570
},
571
571
"robotcode.debug.outputMessages" : {
893
893
"attachPython" : {
894
894
"type" : " boolean" ,
895
895
"description" : " Attach also the python debugger if a robot test starts." ,
896
- "default" : true
896
+ "default" : false
897
897
},
898
898
"attachPythonPort" : {
899
899
"type" : " number" ,
990
990
"attachPython" : {
991
991
"type" : " boolean" ,
992
992
"description" : " Attach also the python debugger if a robot test starts." ,
993
- "default" : true
993
+ "default" : false
994
994
},
995
995
"attachPythonPort" : {
996
996
"type" : " number" ,
1177
1177
"presentation" : {
1178
1178
"hidden" : true
1179
1179
},
1180
- "attachPython" : true ,
1180
+ "attachPython" : false ,
1181
1181
"pythonConfiguration" : " RobotCode: Python"
1182
1182
},
1183
1183
{
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ async def _launch(
152
152
launcherTimeout : Optional [int ] = None , # noqa: N803
153
153
debuggerArgs : Optional [List [str ]] = None , # noqa: N803
154
154
debuggerTimeout : Optional [int ] = None , # noqa: N803
155
- attachPython : Optional [bool ] = True , # noqa: N803
155
+ attachPython : Optional [bool ] = False , # noqa: N803
156
156
attachPythonPort : Optional [int ] = None , # noqa: N803
157
157
variables : Optional [Dict [str , Any ]] = None ,
158
158
outputDir : Optional [str ] = None , # noqa: N803
You can’t perform that action at this time.
0 commit comments