Skip to content

Commit

Permalink
Disable flaky messaging resequence test on GitHub CI (#2957)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Feb 23, 2022
1 parent 8276f52 commit e4e68cc
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import io.restassured.http.ContentType;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledIfEnvironmentVariable;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;

Expand Down Expand Up @@ -123,6 +124,7 @@ public void testJmsTransaction() {
.body(is("JMS Transaction Success"));
}

@DisabledIfEnvironmentVariable(named = "CI", matches = "true", disabledReason = "https://github.com/apache/camel-quarkus/issues/2957")
@Test
public void testResequence() {
final List<String> messages = Arrays.asList("a", "b", "c", "c", "d");
Expand Down

0 comments on commit e4e68cc

Please sign in to comment.