We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9a9a99 commit 181c6d2Copy full SHA for 181c6d2
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_results_[-1].info:
137
+ test_results_[
138
+ -1
139
+ ].info += "\nUnknown database issue detected, label as BROKEN"
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