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 f9a9a99 commit 23e447fCopy full SHA for 23e447f
ci/jobs/scripts/functional_tests_results.py
@@ -133,6 +133,12 @@ def _process_test_output(self):
133
info="".join(test[3])[:16384],
134
)
135
136
+ if "UNKNOWN_DATABASE" in test[3]:
137
+ test_results_[-1].info.append(
138
+ "\nUnknown database issue detected, label as BROKEN"
139
+ )
140
+ test_results_[-1].set_label(Result.Label.BROKEN)
141
+
142
except Exception as e:
143
print(f"ERROR: Failed to parse test results: [{test}]")
144
traceback.print_exc()
0 commit comments