Skip to content

Commit

Permalink
Disable MyBatis integration tests due to #5656
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Jan 19, 2024
1 parent 7825f61 commit b65d60b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@
import io.restassured.path.json.JsonPath;
import org.apache.camel.quarkus.component.mybatis.it.entity.Account;
import org.awaitility.Awaitility;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

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

@Disabled("https://github.com/apache/camel-quarkus/issues/5656")
@QuarkusTest
@QuarkusTestResource(H2DatabaseTestResource.class)
public class MyBatisConsumerTest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
package org.apache.camel.quarkus.component.mybatis.it;

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

@Disabled("https://github.com/apache/camel-quarkus/issues/5656")
@QuarkusIntegrationTest
public class MyBatisIT extends MyBatisTest {
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@
import io.restassured.RestAssured;
import io.restassured.http.ContentType;
import org.apache.camel.quarkus.component.mybatis.it.entity.Account;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import static org.hamcrest.Matchers.equalTo;

@Disabled("https://github.com/apache/camel-quarkus/issues/5656")
@QuarkusTest
@QuarkusTestResource(H2DatabaseTestResource.class)
public class MyBatisTest {
Expand Down

0 comments on commit b65d60b

Please sign in to comment.