Add skip sleep flag to performance analyze
This commit is contained in:
parent
6782050414
commit
66f05c56bf
@ -30,10 +30,11 @@ tasks.test {
|
|||||||
jvmArgs = listOf("-Dfast=true")
|
jvmArgs = listOf("-Dfast=true")
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.register("runPerformanceAnalyze", JavaExec::class.java)
|
tasks.register<JavaExec>("runPerformanceAnalyze")
|
||||||
tasks.named<JavaExec>("runPerformanceAnalyze") {
|
tasks.named<JavaExec>("runPerformanceAnalyze") {
|
||||||
dependsOn("testClasses")
|
dependsOn("testClasses")
|
||||||
group = "verification"
|
group = "verification"
|
||||||
classpath = sourceSets.test.get().runtimeClasspath
|
classpath = sourceSets.test.get().runtimeClasspath
|
||||||
mainClass.set("com.cleverthis.interview.PerformanceAnalyze")
|
mainClass.set("com.cleverthis.interview.PerformanceAnalyze")
|
||||||
|
jvmArgs("-Dfast=true")
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user