Skip to content

Commit

Permalink
Disable native tests for funqy due to upstream issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fedinskiy committed Nov 23, 2023
1 parent ae706dc commit 5a98b55
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@
import io.quarkus.test.bootstrap.QuarkusCliRestService;
import io.quarkus.test.configuration.PropertyLookup;
import io.quarkus.test.scenarios.QuarkusScenario;
import io.quarkus.test.scenarios.annotations.EnabledOnNative;
import io.quarkus.test.scenarios.annotations.DisabledOnNative;
import io.quarkus.test.scenarios.annotations.EnabledWhenLinuxContainersAvailable;

@EnabledWhenLinuxContainersAvailable
@Tag("QUARKUS-2812")
@Tag("quarkus-cli")
@QuarkusScenario
@EnabledOnNative
// todo https://github.com/quarkus-qe/quarkus-test-suite/pull/1539 @EnabledOnNative
@DisabledOnNative(reason = "https://github.com/quarkus-qe/quarkus-test-suite/pull/1539")
public class CliProdModeNativeIT extends AbstractAnalyticsIT {

private static final PropertyLookup NATIVE_IMG_XMX = new PropertyLookup("quarkus.native.native-image-xmx");
Expand Down
16 changes: 16 additions & 0 deletions funqy/knative-events/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,20 @@
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<!-- Disable native build on this module -->
<!--TODO https://github.com/quarkusio/quarkus/issues/37142-->
<id>native</id>
<activation>
<property>
<name>native</name>
</property>
</activation>
<properties>
<!-- To not build the module on Native -->
<quarkus.build.skip>true</quarkus.build.skip>
</properties>
</profile>
</profiles>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@

import io.quarkus.test.bootstrap.RestService;
import io.quarkus.test.scenarios.QuarkusScenario;
import io.quarkus.test.scenarios.annotations.DisabledOnNative;
import io.quarkus.test.services.QuarkusApplication;
import io.restassured.RestAssured;

@QuarkusScenario
@DisabledOnNative(reason = "https://github.com/quarkusio/quarkus/issues/37142")
public class FunqyKnEventsIT {

@QuarkusApplication
Expand Down

0 comments on commit 5a98b55

Please sign in to comment.