diff options
Diffstat (limited to 'docs/model')
-rw-r--r-- | docs/model/current/schema/test_case.info.schema.json | 2 | ||||
-rw-r--r-- | docs/model/current/schema/test_case.info.schema.yaml | 2 | ||||
-rw-r--r-- | docs/model/current/schema/yaml2json.py | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/docs/model/current/schema/test_case.info.schema.json b/docs/model/current/schema/test_case.info.schema.json index 358a3e7582..7df6caad61 100644 --- a/docs/model/current/schema/test_case.info.schema.json +++ b/docs/model/current/schema/test_case.info.schema.json @@ -1,5 +1,5 @@ { - "$id": "https://fd.io/FIXME/CSIT/UTI/test_case/info/0.2.0", + "$id": "https://fd.io/FIXME/CSIT/UTI/test_case/info/1.0.0", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "Schema for info output of test case.", "allOf": [ diff --git a/docs/model/current/schema/test_case.info.schema.yaml b/docs/model/current/schema/test_case.info.schema.yaml index 7771d7afec..295c2fa7cb 100644 --- a/docs/model/current/schema/test_case.info.schema.yaml +++ b/docs/model/current/schema/test_case.info.schema.yaml @@ -13,7 +13,7 @@ --- -$id: https://fd.io/FIXME/CSIT/UTI/test_case/info/0.2.0 +$id: https://fd.io/FIXME/CSIT/UTI/test_case/info/1.0.0 $schema: https://json-schema.org/draft/2020-12/schema description: >- Schema for info output of test case. diff --git a/docs/model/current/schema/yaml2json.py b/docs/model/current/schema/yaml2json.py index 6927bc0172..e891d04439 100644 --- a/docs/model/current/schema/yaml2json.py +++ b/docs/model/current/schema/yaml2json.py @@ -23,7 +23,6 @@ import yaml for filename in glob.glob(u"*.schema.yaml"): name = filename[:-5] - with open(f"{name}.yaml", u"rt") as fin: + with open(f"{name}.yaml", u"r") as fin, open(f"{name}.json", u"w") as fout: data = yaml.load(fin.read()) - with open(f"{name}.json", u"wt") as fout: json.dump(data, fout, indent=2) |