Skip to content

Commit d17f568

Browse files
authored
fix: IntelliJ platform version range for plugin verification (#221)
Signed-off-by: Chao Wang <[email protected]>
1 parent e54b315 commit d17f568

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

build.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,12 @@ val runIdeForUiTests by intellijPlatformTesting.runIde.registering {
119119
intellijPlatform {
120120
pluginVerification {
121121
ides {
122-
recommended()
122+
select {
123+
types = listOf(IntelliJPlatformType.IntellijIdeaCommunity)
124+
channels = listOf(ProductRelease.Channel.RELEASE) // Only stable releases
125+
sinceBuild = "251" // From your minimum supported version
126+
untilBuild = "252.*" // Up to current major version
127+
}
123128
}
124129
freeArgs = listOf(
125130
"-mute",

0 commit comments

Comments
 (0)