1

我在詹金斯上有一个舞台,它必须执行挤压测试。在詹金斯文件中,我有:

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 字段添加多个测试用例。

4

1 回答 1

1

testSuite 条目必须用换行符分隔。如果不确定,请考虑使用“Pipeline Syntax”>“Sample Step”>“step: General Build Step”和“Build Step”>“Squish”(需要 Jenkins 专用的 Squish 插件,而不是支持 Hudson詹金斯)。

于 2018-04-10T12:11:59.037 回答