Skip to content

Commit

Permalink
(chores) camel-kafka: disable flaky tests on ppc64le
Browse files Browse the repository at this point in the history
KafkaBreakOnFirstErrorWithBatchUsingSynchCommitManagerIT (should also be skipped)

Signed-off-by: Otavio R. Piske <[email protected]>
  • Loading branch information
orpiske committed Jan 7, 2024
1 parent 7e32c2d commit d5b43d6
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Tags;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledOnOs;
import org.junit.jupiter.api.condition.OS;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand All @@ -45,6 +47,9 @@
* Camel to handle when to commit an offset
*/
@Tags({ @Tag("breakOnFirstError") })
@EnabledOnOs(value = { OS.LINUX, OS.MAC, OS.FREEBSD, OS.OPENBSD, OS.WINDOWS },
architectures = { "amd64", "aarch_64", "s390x" },
disabledReason = "This test does not run reliably on ppc64le")
class KafkaBreakOnFirstErrorWithBatchUsingSynchCommitManagerIT extends BaseEmbeddedKafkaTestSupport {
public static final String ROUTE_ID = "breakOnFirstErrorBatchIT";
public static final String TOPIC = "breakOnFirstErrorBatchIT";
Expand Down

0 comments on commit d5b43d6

Please sign in to comment.