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.
conformant
1 parent 2f008ed commit f3991f9Copy full SHA for f3991f9
conformance/src/unexpected_fails.py
@@ -21,8 +21,11 @@
21
except Exception as e:
22
raise Exception(f"Error decoding {file}") from e
23
try:
24
- previous_pass = info["conformant"] == "Pass"
25
new_pass = info["conformance_automated"] == "Pass"
+ if new_pass and "conformant" not in info:
26
+ previous_pass = True
27
+ else:
28
+ previous_pass = info["conformant"] == "Pass"
29
except KeyError as e:
30
raise Exception(f"Missing key in {file}") from e
31
if previous_pass != new_pass:
0 commit comments