Skip to content

Commit e6a0202

Browse files
committed
Disable test on AARCH64
1 parent e9d2c77 commit e6a0202

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

spring-boot-project/spring-boot-docker-compose/src/test/java/org/springframework/boot/docker/compose/service/connection/mongo/MongoBitnamiDockerComposeConnectionDetailsFactoryIntegrationTests.java

+3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@
1818

1919
import com.mongodb.ConnectionString;
2020
import org.junit.jupiter.api.Test;
21+
import org.junit.jupiter.api.condition.OS;
2122

2223
import org.springframework.boot.autoconfigure.mongo.MongoConnectionDetails;
2324
import org.springframework.boot.docker.compose.service.connection.test.AbstractDockerComposeIntegrationTests;
25+
import org.springframework.boot.testsupport.junit.DisabledOnOs;
2426
import org.springframework.boot.testsupport.testcontainers.BitnamiImageNames;
2527

2628
import static org.assertj.core.api.Assertions.assertThat;
@@ -30,6 +32,7 @@
3032
*
3133
* @author Scott Frederick
3234
*/
35+
@DisabledOnOs(os = { OS.LINUX, OS.MAC }, architecture = "aarch64", disabledReason = "The image has no ARM support")
3336
class MongoBitnamiDockerComposeConnectionDetailsFactoryIntegrationTests extends AbstractDockerComposeIntegrationTests {
3437

3538
MongoBitnamiDockerComposeConnectionDetailsFactoryIntegrationTests() {

0 commit comments

Comments
 (0)