1
0
mirror of https://github.com/chylex/IntelliJ-Inspection-Lens.git synced 2025-05-11 02:34:08 +02:00

Add Gradle task to run tests in latest snapshot

This commit is contained in:
chylex 2025-01-14 21:22:01 +01:00
parent cde4d81afe
commit ed0b37b86c
Signed by: chylex
SSH Key Fingerprint: SHA256:WqM8X/1DDn11LbYM0H5wsqZUjbcKxVsic37L+ERcF4o

View File

@ -20,6 +20,9 @@ dependencies {
intellijPlatform {
intellijIdeaUltimate("2023.3.3")
bundledPlugin("tanvd.grazi")
// https://plugins.jetbrains.com/plugin/12175-grazie-lite/versions
// plugin("tanvd.grazi", "233.13135.14")
}
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
@ -44,6 +47,11 @@ kotlin {
}
}
tasks.test {
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
val testSnapshot by intellijPlatformTesting.testIde.registering {
version = "LATEST-EAP-SNAPSHOT"
useInstaller = false
}