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
"description": "Extra arguments to be passed to Robot Framework\n\nExamples:\n```toml\nargs = [\"-t\", \"abc\"]\n```\n",
@@ -25,9 +27,9 @@
25
27
"title": "Detached",
26
28
"type": "boolean"
27
29
},
28
-
"documentation": {
29
-
"description": "Documentation for the test suite.",
30
-
"title": "Documentation",
30
+
"doc": {
31
+
"description": "Set the documentation of the top level suite.\nSimple formatting is supported (e.g. *bold*). If the\ndocumentation contains spaces, it must be quoted.\nIf the value is path to an existing file, actual\ndocumentation is read from that file.\n\nExamples:\n```toml\ndoc = \"\"\"Very *good* example\n\nThis is a second paragraph.\n\"\"\"\n```\n",
32
+
"title": "Doc",
31
33
"type": "string"
32
34
},
33
35
"dry-run": {
@@ -38,7 +40,7 @@
38
40
"additionalProperties": {
39
41
"type": "string"
40
42
},
41
-
"description": "Environment variables to be set before running tests.\n\nExamples:\n```toml\n[env]\nTEST_VAR = \"test\"\nSECRET = \"password\"\n```\n",
43
+
"description": "Set variables in the test data. Only scalar\nvariables with string value are supported and name is\ngiven without `${}`\n\nExamples:\n```toml\n[env]\nTEST_VAR = \"test\"\nSECRET = \"password\"\n```\n",
42
44
"title": "Env",
43
45
"type": "object"
44
46
},
@@ -130,6 +132,7 @@
130
132
"type": "array"
131
133
},
132
134
"variables": {
135
+
"description": "Set variables in the test data. Only scalar\nvariables with string value are supported and name is\ngiven without `${}`\n\nExamples:\n```toml\n[variables]\nTEST_VAR = \"test\"\nSECRET = \"password\"\n```\n",
133
136
"title": "Variables",
134
137
"type": "object"
135
138
}
@@ -157,14 +160,6 @@
157
160
"title": "Args",
158
161
"type": "array"
159
162
},
160
-
"configurations": {
161
-
"additionalProperties": {
162
-
"$ref": "#/definitions/DetachableConfiguration"
163
-
},
164
-
"description": "Configurations for Robot Framework.",
165
-
"title": "Configurations",
166
-
"type": "object"
167
-
},
168
163
"console": {
169
164
"title": "Console",
170
165
"type": "string"
@@ -173,9 +168,9 @@
173
168
"title": "Debug-File",
174
169
"type": "string"
175
170
},
176
-
"documentation": {
177
-
"description": "Documentation for the test suite.",
178
-
"title": "Documentation",
171
+
"doc": {
172
+
"description": "Set the documentation of the top level suite.\nSimple formatting is supported (e.g. *bold*). If the\ndocumentation contains spaces, it must be quoted.\nIf the value is path to an existing file, actual\ndocumentation is read from that file.\n\nExamples:\n```toml\ndoc = \"\"\"Very *good* example\n\nThis is a second paragraph.\n\"\"\"\n```\n",
173
+
"title": "Doc",
179
174
"type": "string"
180
175
},
181
176
"dry-run": {
@@ -186,7 +181,7 @@
186
181
"additionalProperties": {
187
182
"type": "string"
188
183
},
189
-
"description": "Environment variables to be set before running tests.\n\nExamples:\n```toml\n[env]\nTEST_VAR = \"test\"\nSECRET = \"password\"\n```\n",
184
+
"description": "Set variables in the test data. Only scalar\nvariables with string value are supported and name is\ngiven without `${}`\n\nExamples:\n```toml\n[env]\nTEST_VAR = \"test\"\nSECRET = \"password\"\n```\n",
190
185
"title": "Env",
191
186
"type": "object"
192
187
},
@@ -262,6 +257,14 @@
262
257
"title": "Pre-Run-Modifiers",
263
258
"type": "object"
264
259
},
260
+
"profiles": {
261
+
"additionalProperties": {
262
+
"$ref": "#/definitions/DetachableConfiguration"
263
+
},
264
+
"description": "Execution Profiles.",
265
+
"title": "Profiles",
266
+
"type": "object"
267
+
},
265
268
"python-path": {
266
269
"description": "Additional locations directories where\nto search test libraries and other extensions when\nthey are imported. Given path can also be a glob\npattern matching multiple paths.\n\nExamples:\n```toml\npython_path = [\"./lib\", \"./resources\"]\n```\n",
267
270
"items": {
@@ -278,6 +281,7 @@
278
281
"type": "array"
279
282
},
280
283
"variables": {
284
+
"description": "Set variables in the test data. Only scalar\nvariables with string value are supported and name is\ngiven without `${}`\n\nExamples:\n```toml\n[variables]\nTEST_VAR = \"test\"\nSECRET = \"password\"\n```\n",
0 commit comments