MINOR: Prevent unnecessary test runs - KAFKA-19042 follow-up (#20122)
CI / build (push) Waiting to run Details

PlaintextConsumerTest should extend AbstractConsumerTest instead
BaseConsumerTest. Otherwise, those tests will be executed on both
`clients-integration-tests` and `core` (see
https://github.com/apache/kafka/pull/20081/files#r2190749592).

Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
Jhen-Yung Hsu 2025-07-08 07:42:15 +08:00 committed by GitHub
parent a3ed705092
commit dde0b8cd92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ import org.junit.jupiter.params.provider.MethodSource
import java.util.concurrent.ExecutionException
@Timeout(600)
class PlaintextConsumerTest extends BaseConsumerTest {
@Timeout(60)
class PlaintextConsumerTest extends AbstractConsumerTest {
@Flaky("KAFKA-18031")
@ParameterizedTest(name = TestInfoUtils.TestWithParameterizedGroupProtocolNames)