Skip to content

Commit

Permalink
Disable microprofile-fault-tolerance testing due to #5995
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Apr 15, 2024
1 parent f51a326 commit 5488e9c
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
</dependencies>

<profiles>
<!-- TODO: https://github.com/apache/camel-quarkus/issues/5995
<profile>
<id>native</id>
<activation>
Expand Down Expand Up @@ -86,6 +87,7 @@
</plugins>
</build>
</profile>
-->
<profile>
<id>virtualDependencies</id>
<activation>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
package org.apache.camel.quarkus.core.faulttolerance.it;

import io.quarkus.test.junit.QuarkusIntegrationTest;
import org.junit.jupiter.api.Disabled;

@Disabled("https://github.com/apache/camel-quarkus/issues/5995")
@QuarkusIntegrationTest
public class CoreFaultToleranceIT extends CoreFaultToleranceTest {
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@
package org.apache.camel.quarkus.core.faulttolerance.it;

import io.quarkus.test.junit.QuarkusTest;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import static io.restassured.RestAssured.get;
import static org.hamcrest.Matchers.is;

@Disabled("https://github.com/apache/camel-quarkus/issues/5995")
@QuarkusTest
public class CoreFaultToleranceTest {

Expand Down
2 changes: 2 additions & 0 deletions integration-tests/foundation-grouped/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@
<group-tests.source.dir>${maven.multiModuleProjectDirectory}/integration-test-groups/foundation</group-tests.source.dir>
<group-tests.dest.module.dir>${project.basedir}</group-tests.dest.module.dir>
<group-tests.concat.rel.paths>src/main/resources/application.properties</group-tests.concat.rel.paths>
<!-- TODO: https://github.com/apache/camel-quarkus/issues/5995 -->
<group-tests.files.excludes>core-fault-tolerance</group-tests.files.excludes>
</properties>
</configuration>
</execution>
Expand Down
2 changes: 2 additions & 0 deletions integration-tests/microprofile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@


<profiles>
<!-- https://github.com/apache/camel-quarkus/issues/5995
<profile>
<id>native</id>
<activation>
Expand Down Expand Up @@ -107,6 +108,7 @@
</plugins>
</build>
</profile>
-->
<profile>
<id>virtualDependencies</id>
<activation>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
package org.apache.camel.quarkus.component.microprofile.it.faulttolerance;

import io.quarkus.test.junit.QuarkusIntegrationTest;
import org.junit.jupiter.api.Disabled;

@Disabled("https://github.com/apache/camel-quarkus/issues/5995")
@QuarkusIntegrationTest
class MicroprofileFaultToleranceIT extends MicroprofileFaultToleranceTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import io.quarkus.test.junit.QuarkusTest;
import io.restassured.RestAssured;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.MethodSource;
Expand All @@ -26,6 +27,7 @@
import static org.apache.camel.quarkus.component.microprofile.it.faulttolerance.MicroProfileFaultToleranceRoutes.EXCEPTION_MESSAGE;
import static org.hamcrest.Matchers.is;

@Disabled("https://github.com/apache/camel-quarkus/issues/5995")
@QuarkusTest
class MicroprofileFaultToleranceTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@
import io.restassured.RestAssured;
import io.restassured.http.ContentType;
import org.apache.camel.ServiceStatus;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import static org.hamcrest.Matchers.contains;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.notNullValue;

@Disabled("https://github.com/apache/camel-quarkus/issues/5995")
@QuarkusTest
class MicroProfileHealthTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
package org.apache.camel.quarkus.component.microprofile.it.health;

import io.quarkus.test.junit.QuarkusIntegrationTest;
import org.junit.jupiter.api.Disabled;

@Disabled("https://github.com/apache/camel-quarkus/issues/5995")
@QuarkusIntegrationTest
class MicroprofileHealthIT extends MicroProfileHealthTest {

Expand Down

0 comments on commit 5488e9c

Please sign in to comment.