We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db2ba73 commit 4242eadCopy full SHA for 4242ead
krpc/krpc-test/build.gradle.kts
@@ -84,6 +84,12 @@ tasks.withType<KotlinJvmTest> {
84
// lincheck agent
85
jvmArgs("-XX:+EnableDynamicAgentLoading")
86
environment("LIBRARY_VERSION", libs.versions.kotlinx.rpc.get())
87
+
88
+ if (project.hasProperty("stressTests") && project.property("stressTests") == "true") {
89
+ include("kotlinx/rpc/krpc/test/stress/**")
90
+ } else {
91
+ exclude("kotlinx/rpc/krpc/test/stress/**")
92
+ }
93
}
94
95
val resourcesPath = projectDir.resolve("src/jvmTest/resources")
0 commit comments