blob: 65ce6bb3a039eb945f75de8be587db1ad6d80b6e [file] [log] [blame]
"$schema": http://json-schema.org/draft-07/schema#
type: object
properties:
version:
type: integer
minimum: 1
const:
type: array
items:
type: object
properties:
name:
type: string
value:
type: string
required:
- name
- value
tests:
type: array
items:
type: object
properties:
name:
type: string
tool:
type: string
pattern: "^(tast|tauto)$"
test_expr:
type: string
args:
type: array
items:
type: string
attributes:
type: array
items:
type: string
deps:
type: array
items:
type: string
required:
- name
- tool
- test_expr
minItems: 1
uniqueItems: true
suites:
type: array
items:
type: object
properties:
name:
type: string
template:
type: string
args_file:
type: string
args:
type: array
items:
type: string
repeats:
type: integer
retries:
type: integer
tests:
type: array
items:
type: object
properties:
test:
type: string
repeats:
type: integer
required:
- test
- repeats
test_list:
type: array
items:
type: string
required:
- name
minItems: 1
uniqueItems: true
required:
- version
- tests
- suites