无法弄清楚如何与gradle并行运行Serenity Web测试。 Here是maven + jenkins的一个例子。但是我需要用gradle做同样的事情。
答案 0 :(得分:4)
您可以按照以下步骤
执行此操作第1步:创建套件文件
步骤2:在gradle中输入以下任务代码
task runAParallelSuite(type: Test) {
def forks =2
exclude ('**/Library.java')
println "The Maximum parallel is $forks"
// uncomment maxParallelForks if you prefer to use the Gradle process forker
// which also requires a complete change of how the suite class works
maxParallelForks = forks
include '**/**TestSuite.class'
// testReportDir = file("${reporting.baseDir}/AParallelSuite")
// testResultsDir = file("${buildDir}/test-results/AParallelSuite")
// show standard out and standard error of the test JVM(s) on the console
testLogging.showStandardStreams = true
}
现在在cmd提示符'gradle clean runAParallelSuite aggregate'
答案 1 :(得分:0)
这是另一种方法
test {
maxParallelForks=2
options {
systemProperties(System.getProperties())
}
...
}
maxParallelForks允许设置与jUnit并行执行的最大分叉测试进程数