NIFI-3441 This closes #1629. added @Ignore to integration tests due to intermittent failures

This commit is contained in:
Oleg Zhurakousky 2017-03-28 12:34:38 -04:00 committed by joewitt
parent 8eb377e308
commit c324c9e21c
2 changed files with 4 additions and 0 deletions

View File

@ -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;

View File

@ -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;