Only dump ASM classes during tests if according property is passed to Gradle
This commit is contained in:
parent
a6922ab9d8
commit
e38b2e1c53
@ -55,9 +55,10 @@ tasks.dokkaHtml {
|
|||||||
dependsOn(tasks.build)
|
dependsOn(tasks.build)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.jvmTest {
|
if (System.getProperty("space.kscience.kmath.ast.dump.generated.classes") == "1")
|
||||||
|
tasks.jvmTest {
|
||||||
jvmArgs = (jvmArgs ?: emptyList()) + listOf("-Dspace.kscience.kmath.ast.dump.generated.classes=1")
|
jvmArgs = (jvmArgs ?: emptyList()) + listOf("-Dspace.kscience.kmath.ast.dump.generated.classes=1")
|
||||||
}
|
}
|
||||||
|
|
||||||
readme {
|
readme {
|
||||||
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
|
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
|
||||||
|
Loading…
Reference in New Issue
Block a user