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 8eabb35 commit d97cd8dCopy full SHA for d97cd8d
flow/util/checkMetadata.py
@@ -73,6 +73,13 @@ def try_number(string):
73
ERRORS = 0
74
WARNS = 0
75
76
+# Check for new warnings
77
+for field, build_value in metadata.items():
78
+ if field not in rules.keys() and "__warnings__count:" in field:
79
+ print(f"[ERROR] {field} fail test: {build_value} (New warning)")
80
+ ERRORS += 1
81
+
82
+# Check for rules
83
for field, rule in rules.items():
84
compare = rule["compare"]
85
op = ops[compare]
0 commit comments