You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| At least one `Severity.ERROR` rule failed | N/A | 1 | Always fails the run |
95
-
| At least one `Severity.WARNING` rule failed, no `Severity.ERROR` failed |`False` (default) | 0 | Run is considered successful, warnings are reported |
96
-
| At least one `Severity.WARNING` rule failed, no `Severity.ERROR` failed |`True`| 1 | Treat warnings as failures;exit with failure |
97
-
| All rules passed or skipped | N/A | 0 | Run is considered successful |
| At least one `Severity.ERROR` rule failed | N/A | `False` | 1 | Always fails the run |
121
+
| At least one `Severity.ERROR` rule failed, but fixed | N/A | `True` | 0 | Run is considered successful, error reasons are reported and `Fixed=true` |
122
+
| At least one `Severity.WARNING` rule failed, no `Severity.ERROR` failed | `False` (default) | N/A | 0 | Run is considered successful, warnings are reported |
123
+
| At least one `Severity.WARNING` rule failed, no `Severity.ERROR` failed | `True` | `False` | 1 | Treat warnings as failures; exit with failure |
124
+
| At least one `Severity.WARNING` rule failed, no `Severity.ERROR` failed, but fixed | `True` | `True` | 0 | Run is considered successful, warnings are reported and `Fixed=true` |
125
+
| All rules passed or skipped | N/A | N/A | 0 | Run is considered successful |
98
126
99
127
### Dump Results as JSON
100
128
@@ -117,7 +145,8 @@ Then a JSON file named `result.json` will be generated as follows:
117
145
"severity": "<WARNING/ERROR: str>",
118
146
"description": "<Description: str>",
119
147
"status": "<PASSED/FAILED/SKIPPED: str>",
120
-
"reasons": "<[<Reason1>, <Reason2>, ...]: [str; N] | null>" // Failed or skipped reasons, null if passed
0 commit comments