Skip to content

Commit

Permalink
[ST] Disable flaky assertNoCoErrorsLogged (#9797)
Browse files Browse the repository at this point in the history
Signed-off-by: jkalinic <jkalinic@redhat.com>
  • Loading branch information
jankalinic committed Mar 7, 2024
1 parent 9bb6b31 commit 73dba1b
Showing 1 changed file with 3 additions and 1 deletion.
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());
} finally {
afterEachMayOverride();
afterEachMustExecute();
Expand Down

0 comments on commit 73dba1b

Please sign in to comment.