From 50a9e6ebd50a3ce78c73c16fd9099c249dfa8f0b Mon Sep 17 00:00:00 2001 From: Eric Deandrea Date: Thu, 30 Jan 2025 11:01:42 -0500 Subject: [PATCH] Dont run consumer contract tests on nightly ecosystem ci --- .../fight/service/FightServiceConsumerContractTests.java | 1 + 1 file changed, 1 insertion(+) diff --git a/rest-fights/src/test/java/io/quarkus/sample/superheroes/fight/service/FightServiceConsumerContractTests.java b/rest-fights/src/test/java/io/quarkus/sample/superheroes/fight/service/FightServiceConsumerContractTests.java index 86f8f7362..5c9130470 100644 --- a/rest-fights/src/test/java/io/quarkus/sample/superheroes/fight/service/FightServiceConsumerContractTests.java +++ b/rest-fights/src/test/java/io/quarkus/sample/superheroes/fight/service/FightServiceConsumerContractTests.java @@ -81,6 +81,7 @@ registryEntry = "protobuf/transport/grpc" ) @DisabledIfSystemProperty(named = "quarkus.native.enabled", matches = "true", disabledReason = "Not sure why, but when native profile is active some of these tests fail") +@DisabledIfSystemProperty(named = "isNightlyEcosystemTest", matches = "true", disabledReason = "Nightly Ecosystem tests sometimes cause flaky failures") public class FightServiceConsumerContractTests extends FightServiceTestsBase { private static final String VILLAIN_API_BASE_URI = "/api/villains"; private static final String VILLAIN_RANDOM_URI = VILLAIN_API_BASE_URI + "/random";