Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ST] Disable flaky assertNoCoErrorsLogged #9797

Merged
merged 2 commits into from
Mar 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@ void tearDownTestCase(ExtensionContext extensionContext) throws Exception {
// does not proceed with the next method (i.e., afterEachMustExecute()). This ensures that if such problem happen
// it will always execute the second method.
try {
assertNoCoErrorsLogged(clusterOperator.getDeploymentNamespace(), storageMap.get(extensionContext).getTestExecutionTimeInSeconds());
// This method needs to be disabled for the moment, as it brings flakiness and is unstable due to regexes and current matcher checks.
// Needs to be reworked on what errors to ignore. Better error logging should be added.
//assertNoCoErrorsLogged(clusterOperator.getDeploymentNamespace(), storageMap.get(extensionContext).getTestExecutionTimeInSeconds());
jankalinic marked this conversation as resolved.
Show resolved Hide resolved
} finally {
afterEachMayOverride();
afterEachMustExecute();
Expand Down