1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-06-01 10:34:05 +02:00

Enable dependency on llmInstaller to fix the tests for the latest EAP.

LLM-13649
This commit is contained in:
Alex Plate 2025-01-10 13:28:33 +03:00
parent 7cf3b959dd
commit 8ba02a77f1
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F
2 changed files with 14 additions and 0 deletions

View File

@ -193,6 +193,13 @@ tasks {
} }
systemProperty("ideavim.nvim.test", System.getProperty("nvim") ?: false) systemProperty("ideavim.nvim.test", System.getProperty("nvim") ?: false)
dependencies {
intellijPlatform {
// Temporal solution to make tests work on the latest EAP release. See LLM-13649
bundledPlugins("com.intellij.llmInstaller")
}
}
} }
compileJava { compileJava {

View File

@ -62,6 +62,13 @@ tasks {
println("Set env TEAMCITY_VERSION to X to enable project leak checks from the platform") println("Set env TEAMCITY_VERSION to X to enable project leak checks from the platform")
environment("TEAMCITY_VERSION" to "X") environment("TEAMCITY_VERSION" to "X")
} }
dependencies {
intellijPlatform {
// Temporal solution to make tests work on the latest EAP release. See LLM-13649
bundledPlugins("com.intellij.llmInstaller")
}
}
} }
} }