You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of defining default settings like output-dir or python-path in VSCode a default config file is created in user directory. The default settings in VSCode are removed, but you can define them here again, but the prefered way is to use the `robot.toml` file in user directory.
Copy file name to clipboardExpand all lines: package.json
+4-7Lines changed: 4 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -449,14 +449,11 @@
449
449
},
450
450
"robotcode.robot.pythonPath": {
451
451
"type": "array",
452
-
"default": [
453
-
"./lib",
454
-
"./resources"
455
-
],
452
+
"default": [],
456
453
"items": {
457
454
"type": "string"
458
455
},
459
-
"markdownDescription": "Specifies additional python paths for robotframework. Corresponds to the `--pythonpath` option of __robot__.\n\n> **WARNING:**\n>\n> The default value for this will changed in one of the next releases to `[]`, because there is the new `robot.toml` configuration file. Please use this file to configure the python path.",
456
+
"markdownDescription": "Specifies additional python paths for robotframework. Corresponds to the `--pythonpath` option of __robot__.",
460
457
"scope": "resource"
461
458
},
462
459
"robotcode.robot.env": {
@@ -497,8 +494,8 @@
497
494
},
498
495
"robotcode.robot.outputDir": {
499
496
"type": "string",
500
-
"default": "results",
501
-
"markdownDescription": "Specifies the output directory where robotframework saves output files. Corresponds to the `--outputdir` option of __robot__.\n\n> **WARNING:**\n>\n> The default value for this will changed in one of the next releases to `\"\"`, because there is the new `robot.toml` configuration file. Please use this file to configure the output directory.",
497
+
"default": "",
498
+
"markdownDescription": "Specifies the output directory where robotframework saves output files. Corresponds to the `--outputdir` option of __robot__.",
0 commit comments