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")
|
||||
}
|
||||
|
||||
tasks.register("runPerformanceAnalyze", JavaExec::class.java)
|
||||
tasks.register<JavaExec>("runPerformanceAnalyze")
|
||||
tasks.named<JavaExec>("runPerformanceAnalyze") {
|
||||
dependsOn("testClasses")
|
||||
group = "verification"
|
||||
classpath = sourceSets.test.get().runtimeClasspath
|
||||
mainClass.set("com.cleverthis.interview.PerformanceAnalyze")
|
||||
jvmArgs("-Dfast=true")
|
||||
}
|
Loading…
Reference in New Issue
Block a user