Skip to content

Commit

Permalink
fix: temporary workaround for test concurrency issues
Browse files Browse the repository at this point in the history
  • Loading branch information
manusa committed Mar 26, 2024
1 parent e1df0b8 commit cd8c96c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,11 @@ void ocUndeploy() throws Exception {
.assertThatShouldDeleteAllAppliedResources();
cleanUpCluster();
}

@Override
public void cleanUpCluster() {
// NO OP
// Don't clean up cluster to avoid removing builds and image streams for other tests
// TODO: Split the Complete test project by profile into multiple projects to avoid this issue
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,11 @@ void ocUndeploy() throws Exception {
.assertThatShouldDeleteAllAppliedResources();
cleanUpCluster();
}

@Override
public void cleanUpCluster() {
// NO OP
// Don't clean up cluster to avoid removing builds and image streams for other tests
// TODO: Split the Complete test project by profile into multiple projects to avoid this issue
}
}

0 comments on commit cd8c96c

Please sign in to comment.