Skip to content

Commit

Permalink
Move test-frame to 0.8.0 + use sequential deletion (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
kornys authored Oct 22, 2024
1 parent 42a1f33 commit 2b77b82
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@

<opedatahub-crds.version>1.0.74-SNAPSHOT</opedatahub-crds.version>
<docs.generator.version>0.2.0</docs.generator.version>
<test-frame.version>0.4.0</test-frame.version>
<test-frame.version>0.8.0</test-frame.version>
</properties>

<repositories>
Expand Down
5 changes: 4 additions & 1 deletion src/test/java/io/odh/test/e2e/Abstract.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
import org.slf4j.LoggerFactory;

@ExtendWith(TestExceptionCallbackListener.class)
@ResourceManager(cleanResources = false)
@ResourceManager(
cleanResources = false,
asyncDeletion = false
)
@TestVisualSeparator
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
public abstract class Abstract {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import static org.junit.jupiter.api.Assertions.fail;

@Tag(TestSuite.STANDARD)
@ResourceManager
@ResourceManager(asyncDeletion = false)
public abstract class StandardAbstract extends Abstract {

private static final Logger LOGGER = LoggerFactory.getLogger(StandardAbstract.class);
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/io/odh/test/e2e/upgrade/UpgradeAbstract.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import java.io.IOException;

@Tag(TestSuite.UPGRADE)
@ResourceManager
@ResourceManager(asyncDeletion = false)
public abstract class UpgradeAbstract extends Abstract {

protected void deployDsc(String name) {
Expand Down

0 comments on commit 2b77b82

Please sign in to comment.