Skip to content

Commit

Permalink
Disable test on AARCH64
Browse files Browse the repository at this point in the history
  • Loading branch information
mhalbritter committed Feb 28, 2024
1 parent e9d2c77 commit e6a0202
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@

import com.mongodb.ConnectionString;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.OS;

import org.springframework.boot.autoconfigure.mongo.MongoConnectionDetails;
import org.springframework.boot.docker.compose.service.connection.test.AbstractDockerComposeIntegrationTests;
import org.springframework.boot.testsupport.junit.DisabledOnOs;
import org.springframework.boot.testsupport.testcontainers.BitnamiImageNames;

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

MongoBitnamiDockerComposeConnectionDetailsFactoryIntegrationTests() {
Expand Down

0 comments on commit e6a0202

Please sign in to comment.