Skip to content

Commit

Permalink
Skip kafka-oauth-keycloak test with GraalVM > 24.0
Browse files Browse the repository at this point in the history
The test is known to fail for quite some time generating a lot of CI
noise. Let's skip it till
quarkusio#39634 is resolved.
  • Loading branch information
zakkak committed Sep 26, 2024
1 parent f0762e4 commit 28f4b4b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
import org.junit.jupiter.api.Test;

import io.quarkus.test.common.QuarkusTestResource;
import io.quarkus.test.junit.DisableIfBuiltWithGraalVMNewerThan;
import io.quarkus.test.junit.GraalVMVersion;
import io.quarkus.test.junit.QuarkusTest;
import io.restassured.common.mapper.TypeRef;

Expand All @@ -20,6 +22,7 @@ public class KafkaOauthTest {
};

@Test
@DisableIfBuiltWithGraalVMNewerThan(GraalVMVersion.GRAALVM_24_0_0) // See https://github.com/quarkusio/quarkus/issues/39634
public void test() {
await().untilAsserted(() -> Assertions.assertEquals(2, get("/kafka").as(TYPE_REF).size()));
}
Expand Down

0 comments on commit 28f4b4b

Please sign in to comment.