Skip to content

Commit 95da610

Browse files
committed
Fix additional test suites
1 parent b7acfa9 commit 95da610

File tree

3 files changed

+20
-16
lines changed

3 files changed

+20
-16
lines changed

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,3 +211,13 @@ fun transformXml(document: Document, path: Path) {
211211
path.writeText(text = it.toString())
212212
}
213213
}
214+
215+
// hack because our test structure currently doesn't make complete sense
216+
tasks.prepareTestSandbox {
217+
val pluginXmlJar = project(":plugin-core").tasks.jar
218+
219+
dependsOn(pluginXmlJar)
220+
from(pluginXmlJar) {
221+
into(intellijPlatform.projectName.map { "$it/lib" })
222+
}
223+
}

plugins/toolkit/jetbrains-rider/ReSharper.AWS/src/AWS.Psi/Protocol/ModelZoneMarket.cs

Lines changed: 0 additions & 16 deletions
This file was deleted.

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,13 @@ dependencies {
3030
// delete when fully split
3131
testRuntimeOnly(project(":plugin-core:jetbrains-ultimate"))
3232
}
33+
34+
// hack because our test structure currently doesn't make complete sense
35+
tasks.prepareTestSandbox {
36+
val pluginXmlJar = project(":plugin-core").tasks.jar
37+
38+
dependsOn(pluginXmlJar)
39+
from(pluginXmlJar) {
40+
into(intellijPlatform.projectName.map { "$it/lib" })
41+
}
42+
}

0 commit comments

Comments
 (0)