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",
21
+
"type": "array",
22
+
"items": {
23
+
"type": "string"
24
+
}
25
+
},
26
+
"documentation": {
27
+
"title": "Documentation",
28
+
"description": "Documentation for the test suite.",
29
+
"type": "string"
30
+
},
31
+
"python_path": {
32
+
"title": "Python Path",
33
+
"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",
34
+
"type": "array",
35
+
"items": {
36
+
"type": "string"
37
+
}
38
+
},
39
+
"env": {
40
+
"title": "Env",
41
+
"description": "Environment variables to be set before running tests.\n\nExamples:\n```toml\n[env]\nTEST_VAR = \"test\"\nSECRET = \"password\"\n```\n",
42
+
"type": "object",
43
+
"additionalProperties": {
44
+
"type": "string"
45
+
}
46
+
},
47
+
"variables": {
48
+
"title": "Variables",
49
+
"type": "object"
50
+
},
51
+
"variable_files": {
52
+
"title": "Variable Files",
53
+
"type": "array",
54
+
"items": {
55
+
"type": "string"
56
+
}
57
+
},
58
+
"paths": {
59
+
"title": "Paths",
60
+
"type": "array",
61
+
"items": {
62
+
"type": "string"
63
+
}
64
+
},
65
+
"output_dir": {
66
+
"title": "Output Dir",
67
+
"type": "string"
68
+
},
69
+
"output_file": {
70
+
"title": "Output File",
71
+
"type": "string"
72
+
},
73
+
"log_file": {
74
+
"title": "Log File",
75
+
"type": "string"
76
+
},
77
+
"debug_file": {
78
+
"title": "Debug File",
79
+
"type": "string"
80
+
},
81
+
"log_level": {
82
+
"title": "Log Level",
83
+
"type": "string"
84
+
},
85
+
"console": {
86
+
"title": "Console",
87
+
"type": "string"
88
+
},
89
+
"mode": {
90
+
"$ref": "#/definitions/Mode"
91
+
},
92
+
"meta_data": {
93
+
"title": "Meta Data",
94
+
"type": "array",
95
+
"items": {
96
+
"type": "string"
97
+
}
98
+
},
99
+
"languages": {
100
+
"title": "Languages",
101
+
"type": "array",
102
+
"items": {
103
+
"type": "string"
104
+
}
105
+
},
106
+
"parsers": {
107
+
"title": "Parsers",
108
+
"type": "object",
109
+
"additionalProperties": {
110
+
"type": "array",
111
+
"items": {}
112
+
}
113
+
},
114
+
"pre_run_modifiers": {
115
+
"title": "Pre Run Modifiers",
116
+
"type": "object",
117
+
"additionalProperties": {
118
+
"type": "array",
119
+
"items": {}
120
+
}
121
+
},
122
+
"pre_rebot_modifiers": {
123
+
"title": "Pre Rebot Modifiers",
124
+
"type": "object",
125
+
"additionalProperties": {
126
+
"type": "array",
127
+
"items": {}
128
+
}
129
+
},
130
+
"listeners": {
131
+
"title": "Listeners",
132
+
"type": "object",
133
+
"additionalProperties": {
134
+
"type": "array",
135
+
"items": {}
136
+
}
137
+
},
138
+
"detached": {
139
+
"title": "Detached",
140
+
"default": false,
141
+
"type": "boolean"
142
+
}
143
+
}
144
+
},
145
+
"RobotConfig": {
146
+
"title": "RobotConfig",
147
+
"type": "object",
148
+
"properties": {
149
+
"args": {
150
+
"title": "Args",
151
+
"description": "Extra arguments to be passed to Robot Framework\n\nExamples:\n```toml\nargs = [\"-t\", \"abc\"]\n```\n",
152
+
"type": "array",
153
+
"items": {
154
+
"type": "string"
155
+
}
156
+
},
157
+
"documentation": {
158
+
"title": "Documentation",
159
+
"description": "Documentation for the test suite.",
160
+
"type": "string"
161
+
},
162
+
"python_path": {
163
+
"title": "Python Path",
164
+
"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",
165
+
"type": "array",
166
+
"items": {
167
+
"type": "string"
168
+
}
169
+
},
170
+
"env": {
171
+
"title": "Env",
172
+
"description": "Environment variables to be set before running tests.\n\nExamples:\n```toml\n[env]\nTEST_VAR = \"test\"\nSECRET = \"password\"\n```\n",
0 commit comments