|
373 | 373 | "null"
|
374 | 374 | ]
|
375 | 375 | },
|
| 376 | + "extra-parse-include": { |
| 377 | + "default": null, |
| 378 | + "description": "Appends entries to the --parseinclude option.\n\nParse only files matching `pattern`. It can be:\n- a file name or pattern like `example.robot` or\n`*.robot` to parse all files matching that name,\n- a file path like `path/to/example.robot`, or\n- a directory path like `path/to/example` to parse\nall files in that directory, recursively.\n\ncorresponds to the `-I --parseinclude pattern *` option of _robot_\n", |
| 379 | + "items": { |
| 380 | + "anyOf": [ |
| 381 | + { |
| 382 | + "type": "string" |
| 383 | + }, |
| 384 | + { |
| 385 | + "$ref": "#/definitions/StringExpression" |
| 386 | + } |
| 387 | + ] |
| 388 | + }, |
| 389 | + "title": "Extra parse include", |
| 390 | + "type": [ |
| 391 | + "array", |
| 392 | + "null" |
| 393 | + ] |
| 394 | + }, |
376 | 395 | "extra-pre-rebot-modifiers": {
|
377 | 396 | "additionalProperties": {
|
378 | 397 | "items": {
|
|
823 | 842 | "description": "Where to create output files. The default is the\ndirectory where tests are run from and the given path\nis considered relative to that unless it is absolute.\n\ncorresponds to the `-d --outputdir dir` option of _robot_\n",
|
824 | 843 | "title": "Output dir"
|
825 | 844 | },
|
| 845 | + "parse-include": { |
| 846 | + "default": null, |
| 847 | + "description": "Parse only files matching `pattern`. It can be:\n- a file name or pattern like `example.robot` or\n`*.robot` to parse all files matching that name,\n- a file path like `path/to/example.robot`, or\n- a directory path like `path/to/example` to parse\nall files in that directory, recursively.\n\ncorresponds to the `-I --parseinclude pattern *` option of _robot_\n", |
| 848 | + "items": { |
| 849 | + "anyOf": [ |
| 850 | + { |
| 851 | + "type": "string" |
| 852 | + }, |
| 853 | + { |
| 854 | + "$ref": "#/definitions/StringExpression" |
| 855 | + } |
| 856 | + ] |
| 857 | + }, |
| 858 | + "title": "Parse include", |
| 859 | + "type": [ |
| 860 | + "array", |
| 861 | + "null" |
| 862 | + ] |
| 863 | + }, |
826 | 864 | "pre-rebot-modifiers": {
|
827 | 865 | "additionalProperties": {
|
828 | 866 | "items": {
|
|
1689 | 1727 | "null"
|
1690 | 1728 | ]
|
1691 | 1729 | },
|
| 1730 | + "extra-parse-include": { |
| 1731 | + "default": null, |
| 1732 | + "description": "Appends entries to the --parseinclude option.\n\nParse only files matching `pattern`. It can be:\n- a file name or pattern like `example.robot` or\n`*.robot` to parse all files matching that name,\n- a file path like `path/to/example.robot`, or\n- a directory path like `path/to/example` to parse\nall files in that directory, recursively.\n\ncorresponds to the `-I --parseinclude pattern *` option of _robot_\n", |
| 1733 | + "items": { |
| 1734 | + "anyOf": [ |
| 1735 | + { |
| 1736 | + "type": "string" |
| 1737 | + }, |
| 1738 | + { |
| 1739 | + "$ref": "#/definitions/StringExpression" |
| 1740 | + } |
| 1741 | + ] |
| 1742 | + }, |
| 1743 | + "title": "Extra parse include", |
| 1744 | + "type": [ |
| 1745 | + "array", |
| 1746 | + "null" |
| 1747 | + ] |
| 1748 | + }, |
1692 | 1749 | "extra-parsers": {
|
1693 | 1750 | "additionalProperties": {
|
1694 | 1751 | "items": {
|
|
2077 | 2134 | ]
|
2078 | 2135 | },
|
2079 | 2136 | "default": null,
|
2080 |
| - "description": "Appends entries to the --variable option.\n\nSet variables in the test data. Only scalar\nvariables with string value are supported and name is\ngiven without `${}`. See --variablefile for a more\npowerful variable setting mechanism.\n\nExamples:\n\n```\n--variable str:Hello => ${str} = `Hello`\n-v hi:Hi_World -E space:_ => ${hi} = `Hi World`\n-v x: -v y:42 => ${x} = ``, ${y} = `42`\n```\n\ncorresponds to the `-v --variable name:value *` option of _rebot_\n", |
| 2137 | + "description": "Appends entries to the --variable option.\n\nSet variables in the test data. Only scalar\nvariables with string value are supported and name is\ngiven without `${}`. See --variablefile for a more\npowerful variable setting mechanism.\n\nExamples:\n\n```\n--variable name:Robot => ${name} = `Robot`\n-v \"hello:Hello world\" => ${hello} = `Hello world`\n-v x: -v y:42 => ${x} = ``, ${y} = `42`\n```\n\ncorresponds to the `-v --variable name:value *` option of _rebot_\n", |
2081 | 2138 | "title": "Extra variables",
|
2082 | 2139 | "type": [
|
2083 | 2140 | "object",
|
|
2339 | 2396 | "description": "Where to create output files. The default is the\ndirectory where tests are run from and the given path\nis considered relative to that unless it is absolute.\n\ncorresponds to the `-d --outputdir dir` option of _robot_\n",
|
2340 | 2397 | "title": "Output dir"
|
2341 | 2398 | },
|
| 2399 | + "parse-include": { |
| 2400 | + "default": null, |
| 2401 | + "description": "Parse only files matching `pattern`. It can be:\n- a file name or pattern like `example.robot` or\n`*.robot` to parse all files matching that name,\n- a file path like `path/to/example.robot`, or\n- a directory path like `path/to/example` to parse\nall files in that directory, recursively.\n\ncorresponds to the `-I --parseinclude pattern *` option of _robot_\n", |
| 2402 | + "items": { |
| 2403 | + "anyOf": [ |
| 2404 | + { |
| 2405 | + "type": "string" |
| 2406 | + }, |
| 2407 | + { |
| 2408 | + "$ref": "#/definitions/StringExpression" |
| 2409 | + } |
| 2410 | + ] |
| 2411 | + }, |
| 2412 | + "title": "Parse include", |
| 2413 | + "type": [ |
| 2414 | + "array", |
| 2415 | + "null" |
| 2416 | + ] |
| 2417 | + }, |
2342 | 2418 | "parsers": {
|
2343 | 2419 | "additionalProperties": {
|
2344 | 2420 | "items": {
|
|
2993 | 3069 | ]
|
2994 | 3070 | },
|
2995 | 3071 | "default": null,
|
2996 |
| - "description": "Set variables in the test data. Only scalar\nvariables with string value are supported and name is\ngiven without `${}`. See --variablefile for a more\npowerful variable setting mechanism.\n\nExamples:\n\n```\n--variable str:Hello => ${str} = `Hello`\n-v hi:Hi_World -E space:_ => ${hi} = `Hi World`\n-v x: -v y:42 => ${x} = ``, ${y} = `42`\n```\n\ncorresponds to the `-v --variable name:value *` option of _robot_\n", |
| 3072 | + "description": "Set variables in the test data. Only scalar\nvariables with string value are supported and name is\ngiven without `${}`. See --variablefile for a more\npowerful variable setting mechanism.\n\nExamples:\n\n```\n--variable name:Robot => ${name} = `Robot`\n-v \"hello:Hello world\" => ${hello} = `Hello world`\n-v x: -v y:42 => ${x} = ``, ${y} = `42`\n```\n\ncorresponds to the `-v --variable name:value *` option of _robot_\n", |
2997 | 3073 | "title": "Variables",
|
2998 | 3074 | "type": [
|
2999 | 3075 | "object",
|
|
3479 | 3555 | "null"
|
3480 | 3556 | ]
|
3481 | 3557 | },
|
| 3558 | + "extra-parse-include": { |
| 3559 | + "default": null, |
| 3560 | + "description": "Appends entries to the --parseinclude option.\n\nParse only files matching `pattern`. It can be:\n- a file name or pattern like `example.robot` or\n`*.robot` to parse all files matching that name,\n- a file path like `path/to/example.robot`, or\n- a directory path like `path/to/example` to parse\nall files in that directory, recursively.\n\ncorresponds to the `-I --parseinclude pattern *` option of _robot_\n", |
| 3561 | + "items": { |
| 3562 | + "anyOf": [ |
| 3563 | + { |
| 3564 | + "type": "string" |
| 3565 | + }, |
| 3566 | + { |
| 3567 | + "$ref": "#/definitions/StringExpression" |
| 3568 | + } |
| 3569 | + ] |
| 3570 | + }, |
| 3571 | + "title": "Extra parse include", |
| 3572 | + "type": [ |
| 3573 | + "array", |
| 3574 | + "null" |
| 3575 | + ] |
| 3576 | + }, |
3482 | 3577 | "extra-parsers": {
|
3483 | 3578 | "additionalProperties": {
|
3484 | 3579 | "items": {
|
|
3856 | 3951 | ]
|
3857 | 3952 | },
|
3858 | 3953 | "default": null,
|
3859 |
| - "description": "Appends entries to the --variable option.\n\nSet variables in the test data. Only scalar\nvariables with string value are supported and name is\ngiven without `${}`. See --variablefile for a more\npowerful variable setting mechanism.\n\nExamples:\n\n```\n--variable str:Hello => ${str} = `Hello`\n-v hi:Hi_World -E space:_ => ${hi} = `Hi World`\n-v x: -v y:42 => ${x} = ``, ${y} = `42`\n```\n\ncorresponds to the `-v --variable name:value *` option of _rebot_\n", |
| 3954 | + "description": "Appends entries to the --variable option.\n\nSet variables in the test data. Only scalar\nvariables with string value are supported and name is\ngiven without `${}`. See --variablefile for a more\npowerful variable setting mechanism.\n\nExamples:\n\n```\n--variable name:Robot => ${name} = `Robot`\n-v \"hello:Hello world\" => ${hello} = `Hello world`\n-v x: -v y:42 => ${x} = ``, ${y} = `42`\n```\n\ncorresponds to the `-v --variable name:value *` option of _rebot_\n", |
3860 | 3955 | "title": "Extra variables",
|
3861 | 3956 | "type": [
|
3862 | 3957 | "object",
|
|
4118 | 4213 | "description": "Where to create output files. The default is the\ndirectory where tests are run from and the given path\nis considered relative to that unless it is absolute.\n\ncorresponds to the `-d --outputdir dir` option of _robot_\n",
|
4119 | 4214 | "title": "Output dir"
|
4120 | 4215 | },
|
| 4216 | + "parse-include": { |
| 4217 | + "default": null, |
| 4218 | + "description": "Parse only files matching `pattern`. It can be:\n- a file name or pattern like `example.robot` or\n`*.robot` to parse all files matching that name,\n- a file path like `path/to/example.robot`, or\n- a directory path like `path/to/example` to parse\nall files in that directory, recursively.\n\ncorresponds to the `-I --parseinclude pattern *` option of _robot_\n", |
| 4219 | + "items": { |
| 4220 | + "anyOf": [ |
| 4221 | + { |
| 4222 | + "type": "string" |
| 4223 | + }, |
| 4224 | + { |
| 4225 | + "$ref": "#/definitions/StringExpression" |
| 4226 | + } |
| 4227 | + ] |
| 4228 | + }, |
| 4229 | + "title": "Parse include", |
| 4230 | + "type": [ |
| 4231 | + "array", |
| 4232 | + "null" |
| 4233 | + ] |
| 4234 | + }, |
4121 | 4235 | "parsers": {
|
4122 | 4236 | "additionalProperties": {
|
4123 | 4237 | "items": {
|
|
4765 | 4879 | ]
|
4766 | 4880 | },
|
4767 | 4881 | "default": null,
|
4768 |
| - "description": "Set variables in the test data. Only scalar\nvariables with string value are supported and name is\ngiven without `${}`. See --variablefile for a more\npowerful variable setting mechanism.\n\nExamples:\n\n```\n--variable str:Hello => ${str} = `Hello`\n-v hi:Hi_World -E space:_ => ${hi} = `Hi World`\n-v x: -v y:42 => ${x} = ``, ${y} = `42`\n```\n\ncorresponds to the `-v --variable name:value *` option of _robot_\n", |
| 4882 | + "description": "Set variables in the test data. Only scalar\nvariables with string value are supported and name is\ngiven without `${}`. See --variablefile for a more\npowerful variable setting mechanism.\n\nExamples:\n\n```\n--variable name:Robot => ${name} = `Robot`\n-v \"hello:Hello world\" => ${hello} = `Hello world`\n-v x: -v y:42 => ${x} = ``, ${y} = `42`\n```\n\ncorresponds to the `-v --variable name:value *` option of _robot_\n", |
4769 | 4883 | "title": "Variables",
|
4770 | 4884 | "type": [
|
4771 | 4885 | "object",
|
|
0 commit comments