4chicat commented on code in PR #5745: URL: https://github.com/apache/seatunnel/pull/5745#discussion_r1494184992
########## seatunnel-e2e/seatunnel-e2e-common/src/test/java/org/apache/seatunnel/e2e/common/util/ContainerUtil.java: ########## @@ -251,6 +252,12 @@ public static List<TestContainer> discoverTestContainers() { } } + public static List<TestContainer> discoverTestSpark3Containers() { + return discoverTestContainers().stream() + .filter(testContainer -> testContainer instanceof Spark3Container) + .collect(Collectors.toList()); + } Review Comment: It has been removed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@seatunnel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org