We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f29d090 commit 540a269Copy full SHA for 540a269
bin/json_tests_workflow.py
@@ -53,11 +53,14 @@ def main():
53
54
changed_file_content = repo.get_contents(file).decoded_content.decode('utf-8')
55
# Parse JSON content
56
+ print("--------")
57
try:
58
json_content = json.loads(changed_file_content)
59
for test in json_content:
60
+ print(test)
61
if "specification" in test:
62
for spec, section in test["specification"]:
63
+ print(spec, section)
64
if spec in ["core", "validation", "hyper-schema"]:
65
print(urls[draft][spec] + section)
66
else: print(urls[spec] + section)
0 commit comments