It appears we stop everything in the after class:
https://github.com/arquillian/arquillian-extension-testcontainers/blob/main/src/main/java/org/arquillian/testcontainers/TestContainersObserver.java#L68
However, starting containers is sometimes not cheap and can increase turnaround time substantially.
Moreover, many use-cases actually do require the container to be running for all/most of the test cases and as such does NOT need to be shutdown. This is similar to how we handle mode="custom" in ARQ containers in WildFly testsuite.
Was this intended to be supported? Using it within a Suite?
It appears we stop everything in the after class:
https://github.com/arquillian/arquillian-extension-testcontainers/blob/main/src/main/java/org/arquillian/testcontainers/TestContainersObserver.java#L68
However, starting containers is sometimes not cheap and can increase turnaround time substantially.
Moreover, many use-cases actually do require the container to be running for all/most of the test cases and as such does NOT need to be shutdown. This is similar to how we handle mode="custom" in ARQ containers in WildFly testsuite.
Was this intended to be supported? Using it within a Suite?