mirror of https://github.com/apache/nifi.git
NIFI-3441 This closes #1629. added @Ignore to integration tests due to intermittent failures
This commit is contained in:
parent
8eb377e308
commit
c324c9e21c
|
@ -36,6 +36,7 @@ import org.apache.nifi.processors.kafka.test.EmbeddedKafka;
|
|||
import org.apache.nifi.processors.kafka.test.EmbeddedKafkaProducerHelper;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import kafka.consumer.Consumer;
|
||||
|
@ -47,6 +48,7 @@ import kafka.javaapi.consumer.ConsumerConnector;
|
|||
|
||||
// The test is valid and should be ran when working on this module. @Ignore is
|
||||
// to speed up the overall build
|
||||
@Ignore
|
||||
public class KafkaPublisherTest {
|
||||
|
||||
private static EmbeddedKafka kafkaLocal;
|
||||
|
|
|
@ -33,6 +33,7 @@ import org.apache.nifi.util.TestRunner;
|
|||
import org.apache.nifi.util.TestRunners;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import kafka.consumer.Consumer;
|
||||
|
@ -43,6 +44,7 @@ import kafka.javaapi.consumer.ConsumerConnector;
|
|||
|
||||
// The test is valid and should be ran when working on this module. @Ignore is
|
||||
// to speed up the overall build
|
||||
@Ignore
|
||||
public class PutKafkaTest {
|
||||
|
||||
private static EmbeddedKafka kafkaLocal;
|
||||
|
|
Loading…
Reference in New Issue