change: add verify in config json schema

This commit is contained in:
debugtalk
2019-12-31 18:32:04 +08:00
parent 4f06ca3cd1
commit a2c2b5984a

View File

@@ -32,6 +32,19 @@
},
"teardown_hooks": {
"$ref": "#/definitions/hook"
},
"verify": {
"description": "configure verify for current testcase/testsuite",
"oneOf": [
{
"description": "whether we verify the servers TLS certificate",
"type": "boolean"
},
{
"description": "path to a CA bundle to use",
"type": "string"
}
]
}
},
"required": ["name"]
@@ -117,6 +130,7 @@
"type": "object"
},
"verify": {
"description": "configure verify for current api/teststep",
"oneOf": [
{
"description": "whether we verify the servers TLS certificate",