Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable native tests for funqy due to upstream issue #1539

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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")
fedinskiy marked this conversation as resolved.
Show resolved Hide resolved
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