Skip to content

Commit

Permalink
Enable funqy tests in Native
Browse files Browse the repository at this point in the history
Following the recommendation from quarkusio/quarkus#43360

(cherry picked from commit 64f9986)
  • Loading branch information
fedinskiy authored and michalvavrik committed Oct 10, 2024
1 parent c2f28f2 commit f496102
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 26 deletions.
24 changes: 2 additions & 22 deletions funqy/knative-events/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,8 @@
<artifactId>quarkus-openshift</artifactId>
</dependency>
<dependency>
<groupId>io.fabric8</groupId>
<artifactId>openshift-client</artifactId>
</dependency>
<dependency>
<groupId>io.fabric8</groupId>
<artifactId>knative-client</artifactId>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-openshift-client</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus.qe</groupId>
Expand All @@ -51,20 +47,4 @@
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<!-- Disable native build on this module -->
<!--TODO https://github.com/quarkusio/quarkus/issues/43360 -->
<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,12 +16,10 @@

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/43360")
public class FunqyKnEventsIT {

@QuarkusApplication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,12 @@

import io.quarkus.test.scenarios.OpenShiftDeploymentStrategy;
import io.quarkus.test.scenarios.OpenShiftScenario;
import io.quarkus.test.scenarios.annotations.DisabledOnNative;
import io.quarkus.test.services.QuarkusApplication;
import io.quarkus.test.services.knative.eventing.FunqyKnativeEventsService;
import io.quarkus.test.services.knative.eventing.OpenShiftExtensionFunqyKnativeEventsService;
import io.quarkus.test.services.knative.eventing.spi.ForwardResponseDTO;
import io.restassured.common.mapper.TypeRef;

@DisabledOnNative(reason = "https://github.com/quarkusio/quarkus/issues/43360")
@Tag("use-quarkus-openshift-extension")
@Tag("serverless")
@OpenShiftScenario(deployment = OpenShiftDeploymentStrategy.UsingOpenShiftExtension)
Expand Down

0 comments on commit f496102

Please sign in to comment.