From: pmikus Date: Wed, 22 Dec 2021 07:24:24 +0000 (+0100) Subject: fix(uti): Fixing broken code part I X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=98ac029416d6c46755d2844e604f463930df119c fix(uti): Fixing broken code part I Part of fixing chain after early merge. Signed-off-by: pmikus Change-Id: Ie8f50fb84212c63ac9e225dfcb9bbc74fb2dd624 --- 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)