Skip to content

Commit 1627f57

Browse files
committed
Disable flaky integration tests for now
1 parent 3811cd4 commit 1627f57

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

spring-webflux/src/test/java/org/springframework/web/reactive/result/method/annotation/MultipartIntegrationTests.java

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
import com.fasterxml.jackson.annotation.JsonCreator;
2727
import com.fasterxml.jackson.annotation.JsonProperty;
28+
import org.junit.jupiter.api.Disabled;
2829
import reactor.core.publisher.Flux;
2930
import reactor.core.publisher.Mono;
3031
import reactor.core.scheduler.Schedulers;
@@ -62,6 +63,7 @@
6263
import static org.assertj.core.api.Assertions.assertThat;
6364
import static org.junit.jupiter.api.Assumptions.assumeFalse;
6465

66+
@Disabled
6567
class MultipartIntegrationTests extends AbstractHttpHandlerIntegrationTests {
6668

6769
private WebClient webClient;

spring-webflux/src/test/kotlin/org/springframework/web/reactive/result/method/annotation/CoroutinesIntegrationTests.kt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2021 the original author or authors.
2+
* Copyright 2002-2022 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -24,6 +24,7 @@ import kotlinx.coroutines.flow.Flow
2424
import kotlinx.coroutines.flow.flow
2525
import org.assertj.core.api.Assertions.assertThat
2626
import org.assertj.core.api.Assertions.assertThatExceptionOfType
27+
import org.junit.jupiter.api.Disabled
2728
import org.springframework.context.ApplicationContext
2829
import org.springframework.context.annotation.AnnotationConfigApplicationContext
2930
import org.springframework.context.annotation.ComponentScan
@@ -39,6 +40,7 @@ import org.springframework.web.testfixture.http.server.reactive.bootstrap.HttpSe
3940
import reactor.core.publisher.Flux
4041
import java.time.Duration
4142

43+
@Disabled
4244
class CoroutinesIntegrationTests : AbstractRequestMappingIntegrationTests() {
4345

4446
override fun initApplicationContext(): ApplicationContext {

0 commit comments

Comments
 (0)