fix(uti): Fixing broken code part I 81/34781/2
authorpmikus <pmikus@cisco.com>
Wed, 22 Dec 2021 07:24:24 +0000 (08:24 +0100)
committerPeter Mikus <pmikus@cisco.com>
Wed, 22 Dec 2021 08:32:53 +0000 (08:32 +0000)
Part of fixing chain after early merge.

Signed-off-by: pmikus <pmikus@cisco.com>
Change-Id: Ie8f50fb84212c63ac9e225dfcb9bbc74fb2dd624

docs/model/current/schema/test_case.info.schema.json
docs/model/current/schema/test_case.info.schema.yaml
docs/model/current/schema/yaml2json.py

index 358a3e7..7df6caa 100644 (file)
@@ -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": [
   "$schema": "https://json-schema.org/draft/2020-12/schema",
   "description": "Schema for info output of test case.",
   "allOf": [
index 7771d7a..295c2fa 100644 (file)
@@ -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.
 $schema: https://json-schema.org/draft/2020-12/schema
 description: >-
     Schema for info output of test case.
index 6927bc0..e891d04 100644 (file)
@@ -23,7 +23,6 @@ import yaml
 
 for filename in glob.glob(u"*.schema.yaml"):
     name = filename[:-5]
 
 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())
         data = yaml.load(fin.read())
-    with open(f"{name}.json", u"wt") as fout:
         json.dump(data, fout, indent=2)
         json.dump(data, fout, indent=2)