Browse Source

Revert temporary exclusion of failing Jetty 11 tests

Closes gh-27424

This reverts commit 5eac8555d9.
pull/27435/head
Rossen Stoyanchev 4 years ago
parent
commit
958eb0f964
  1. 12
      build.gradle

12
build.gradle

@ -299,18 +299,6 @@ configure([rootProject] + javaProjects) { project ->
test { test {
useJUnitPlatform() useJUnitPlatform()
include(["**/*Tests.class", "**/*Test.class"]) include(["**/*Tests.class", "**/*Test.class"])
// TODO Enable excluded tests (https://github.com/spring-projects/spring-framework/issues/27424)
filter {
excludeTestsMatching("*ErrorHandlerIntegrationTests")
excludeTestsMatching("*RequestPartIntegrationTests")
excludeTestsMatching("*WebSocketConfigurationTests")
excludeTestsMatching("*WebSocketHandshakeTests")
excludeTestsMatching("*StompWebSocketIntegrationTests")
excludeTestsMatching("*RequestMappingIntegrationTests")
excludeTestsMatching("*CrossOriginAnnotationIntegrationTests")
excludeTestsMatching("*NestedRouteIntegrationTests")
excludeTestsMatching("*WebSocketIntegrationTests")
}
systemProperty("java.awt.headless", "true") systemProperty("java.awt.headless", "true")
systemProperty("testGroups", project.properties.get("testGroups")) systemProperty("testGroups", project.properties.get("testGroups"))
systemProperty("io.netty.leakDetection.level", "paranoid") systemProperty("io.netty.leakDetection.level", "paranoid")

Loading…
Cancel
Save