We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 197e89f commit ac296f6Copy full SHA for ac296f6
buildSrc/src/main/kotlin/toolkit-testing.gradle.kts
@@ -62,6 +62,11 @@ artifacts {
62
tasks.withType<Test>().configureEach {
63
useJUnitPlatform()
64
65
+ classpath -= classpath.filter {
66
+ // pollutes test logger
67
+ it.name == "clouds-docker-impl.jar"
68
+ }
69
+
70
ciOnly {
71
retry {
72
failOnPassedAfterRetry.set(false)
plugins/toolkit/jetbrains-rider/build.gradle.kts
@@ -371,7 +371,7 @@ tasks.integrationTest {
371
}
372
373
// https://youtrack.jetbrains.com/issue/IJPL-180442
374
-tasks.withType<Test> {
+tasks.withType<Test>().configureEach {
375
classpath -= classpath.filter {
376
(it.name.startsWith("localization-") && it.name.endsWith(".jar")) ||
377
it.name == "cwm-plugin.jar"
0 commit comments