mirror of https://github.com/apache/kafka.git
MINOR: Prevent unnecessary test runs - KAFKA-19042 follow-up (#20122)
CI / build (push) Waiting to run
Details
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:
parent
a3ed705092
commit
dde0b8cd92
|
@ -24,8 +24,8 @@ import org.junit.jupiter.params.provider.MethodSource
|
||||||
|
|
||||||
import java.util.concurrent.ExecutionException
|
import java.util.concurrent.ExecutionException
|
||||||
|
|
||||||
@Timeout(600)
|
@Timeout(60)
|
||||||
class PlaintextConsumerTest extends BaseConsumerTest {
|
class PlaintextConsumerTest extends AbstractConsumerTest {
|
||||||
|
|
||||||
@Flaky("KAFKA-18031")
|
@Flaky("KAFKA-18031")
|
||||||
@ParameterizedTest(name = TestInfoUtils.TestWithParameterizedGroupProtocolNames)
|
@ParameterizedTest(name = TestInfoUtils.TestWithParameterizedGroupProtocolNames)
|
||||||
|
|
Loading…
Reference in New Issue