summaryrefslogtreecommitdiff
path: root/data/test.schema.json
Commit message (Collapse)AuthorAgeFilesLines
* test: Add 'dir' support for installed files in test.jsonDaniel Mensinger2020-08-271-0/+1
| | | | | | This is useful for automatically generated docs (doxygen, hotdoc) with a lot of generated files that may differ with different versions of the generator.
* Update test.json schema to add stdoutJon Turney2020-04-301-0/+25
| | | | | | | | | | | Update the test.json schema, adding the 'stdout' property. Also amend the test.json schema so the presence of an unexpected property on the root object causes a validation error. v2: Also add 'tools' property to json schema. Amend the documentation not to use the word 'list' to describe a dict.
* Add a json schema for the test.json used in testsDylan Baker2020-04-171-0/+105
This does a couple of nice things, one is that editors like vscode can be configured to use this schema to provide auto completion and error highlighting if invalid values are added or required values are missing. It also allows us test that the format of the test matrix work in a unit test, which I've added. It does require that the python jsonschema package is installed.