From 98ac029416d6c46755d2844e604f463930df119c Mon Sep 17 00:00:00 2001 From: pmikus Date: Wed, 22 Dec 2021 08:24:24 +0100 Subject: [PATCH 1/1] fix(uti): Fixing broken code part I Part of fixing chain after early merge. Signed-off-by: pmikus Change-Id: Ie8f50fb84212c63ac9e225dfcb9bbc74fb2dd624 --- docs/model/current/schema/test_case.info.schema.json | 2 +- docs/model/current/schema/test_case.info.schema.yaml | 2 +- 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) -- 2.16.6