blob: de076ad17480a9067e28514ccb8ac9c7c716ccd8 [file] [log] [blame]
{
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "common.json#/definitions/sdk_element"
},
{
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the Python test",
"type": "string"
},
"root": {
"$ref": "common.json#/definitions/file",
"description": "The root path to the Python test directory"
},
"min_python_version": {
"description": "Minimum Python runtime version (Major.Minor) the test is compatible with",
"type": "string"
},
"files": {
"$ref": "#/definitions/fileGroup",
"description": "Target architecture-generic files for this test"
},
"type": {
"allOf": [
{
"$ref": "common.json#/definitions/kind"
},
{
"enum": [
"experimental_python_e2e_test"
]
}
]
}
},
"required": [
"root",
"min_python_version",
"name",
"type",
"files"
]
}
],
"definitions": {
"fileGroup": {
"description": "A collection of files",
"items": {
"$ref": "common.json#/definitions/file"
},
"minItems": 1,
"type": "array"
}
},
"description": "A Python end-to-end test",
"id": "http://fuchsia.com/schemas/sdk/experimental_python_e2e_test.json",
"type": "object"
}