Skip to content

Commit 540a269

Browse files
committed
Log2
1 parent f29d090 commit 540a269

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

bin/json_tests_workflow.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,14 @@ def main():
5353

5454
changed_file_content = repo.get_contents(file).decoded_content.decode('utf-8')
5555
# Parse JSON content
56+
print("--------")
5657
try:
5758
json_content = json.loads(changed_file_content)
5859
for test in json_content:
60+
print(test)
5961
if "specification" in test:
6062
for spec, section in test["specification"]:
63+
print(spec, section)
6164
if spec in ["core", "validation", "hyper-schema"]:
6265
print(urls[draft][spec] + section)
6366
else: print(urls[spec] + section)

0 commit comments

Comments
 (0)