Skip to content

Commit

Permalink
Enable dependency on llmInstaller to fix the tests for the latest EAP.
Browse files Browse the repository at this point in the history
LLM-13649
  • Loading branch information
AlexPl292 committed Jan 10, 2025
1 parent 7cf3b95 commit 8ba02a7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,13 @@ tasks {
}

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 {
Expand Down
7 changes: 7 additions & 0 deletions tests/java-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@ tasks {
println("Set env TEAMCITY_VERSION to X to enable project leak checks from the platform")
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")
}
}
}
}

Expand Down

0 comments on commit 8ba02a7

Please sign in to comment.