Skip to content

Commit 27ddcbd

Browse files
committed
Merge branch '2.5.x' into 2.6.x
2 parents c739831 + cd5d3db commit 27ddcbd

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-session-webflux/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ dependencies {
2424
sessionStores[project.findProperty("sessionStore") ?: "mongodb"].each { runtimeOnly it }
2525

2626
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
27+
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
2728
}

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-session-webflux/src/test/java/smoketest/session/SampleSessionWebFluxApplicationTests.java

+4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@
2020
import java.util.Base64;
2121

2222
import org.junit.jupiter.api.Test;
23+
import org.junit.jupiter.api.condition.OS;
2324
import reactor.util.function.Tuples;
2425

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

4145
@LocalServerPort

0 commit comments

Comments
 (0)