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 65b95ae
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import io.quarkus.test.bootstrap.QuarkusCliRestService;
import io.quarkus.test.configuration.PropertyLookup;
import io.quarkus.test.scenarios.QuarkusScenario;
import io.quarkus.test.scenarios.annotations.DisabledOnNative;
import io.quarkus.test.scenarios.annotations.EnabledOnNative;
import io.quarkus.test.scenarios.annotations.EnabledWhenLinuxContainersAvailable;

Expand All @@ -21,6 +22,7 @@
@Tag("quarkus-cli")
@QuarkusScenario
@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 65b95ae

Please sign in to comment.