Skip to content

Commit ac296f6

Browse files
committed
tst
1 parent 197e89f commit ac296f6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

buildSrc/src/main/kotlin/toolkit-testing.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ artifacts {
6262
tasks.withType<Test>().configureEach {
6363
useJUnitPlatform()
6464

65+
classpath -= classpath.filter {
66+
// pollutes test logger
67+
it.name == "clouds-docker-impl.jar"
68+
}
69+
6570
ciOnly {
6671
retry {
6772
failOnPassedAfterRetry.set(false)

plugins/toolkit/jetbrains-rider/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ tasks.integrationTest {
371371
}
372372

373373
// https://youtrack.jetbrains.com/issue/IJPL-180442
374-
tasks.withType<Test> {
374+
tasks.withType<Test>().configureEach {
375375
classpath -= classpath.filter {
376376
(it.name.startsWith("localization-") && it.name.endsWith(".jar")) ||
377377
it.name == "cwm-plugin.jar"

0 commit comments

Comments
 (0)