【发布时间】:2018-04-09 12:04:37
【问题描述】:
我在 jenkins 上有一个阶段,它必须执行挤压测试。在我的詹金斯文件中:
step([$class: 'SquishBuilder',
squishConfig: 'Default',
testSuite: env.WORKSPACE +"/test_suites/suite_sample_module2"])
实际上,我在 test_suites 中进行了各种测试,试图将其添加到舞台上:
step([$class: 'SquishBuilder',
squishConfig: 'Default',
testSuite: '''env.WORKSPACE + "/test_suites/suite_sample_module2" env.WORKSPACE + "/test_suites/suite_sample_module2"'''])
但它并没有将其作为单独的套件阅读,因此建议如何针对 test_suites 字段添加多个测试用例。
【问题讨论】:
标签: jenkins groovy automated-tests squish