Skip to content

Commit

Permalink
Disable SampleSessionWebFluxApplicationTests on Linux aarch64
Browse files Browse the repository at this point in the history
These tests use embedded mongo under the hood.

See gh-30082
  • Loading branch information
mhalbritter committed Mar 23, 2022
1 parent d8cf332 commit cd5d3db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ dependencies {
sessionStores[project.findProperty("sessionStore") ?: "mongodb"].each { runtimeOnly it }

testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@
import java.util.Base64;

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.OS;
import reactor.util.function.Tuples;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.testsupport.junit.DisabledOnOs;
import org.springframework.boot.web.server.LocalServerPort;
import org.springframework.http.HttpStatus;
import org.springframework.web.reactive.function.client.WebClient;
Expand All @@ -36,6 +38,8 @@
* @author Vedran Pavic
*/
@SpringBootTest(properties = "spring.session.timeout:10", webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@DisabledOnOs(os = OS.LINUX, architecture = "aarch64",
disabledReason = "Embedded Mongo doesn't support Linux aarch64, see https://github.com/flapdoodle-oss/de.flapdoodle.embed.mongo/issues/379")
class SampleSessionWebFluxApplicationTests {

@LocalServerPort
Expand Down

0 comments on commit cd5d3db

Please sign in to comment.