qTest | Jenkinsfile管道集成

时间:2018-12-21 15:31:47

标签: jenkins junit jenkins-pipeline qtest

以下链接之后,我将qTest与Jenkinsfile管道集成在一起。 https://www.qasymphony.com/video-training/qtest/project-admin/how-to-integrate-qtest-jenkins-pipeline-projects/

与管道集成后,我观察到以下错误。

com.qasymphony.ci.plugin.exception.SaveSettingException: CI Integration Setting is disabled.
    at com.qasymphony.ci.plugin.ConfigService.saveConfiguration(ConfigService.java:317)
    at com.qasymphony.ci.plugin.action.SubmitJUnitStep$SubmitJUnitStepExecution.loadPipelineConfiguration(SubmitJUnitStep.java:479)
    at com.qasymphony.ci.plugin.action.SubmitJUnitStep$SubmitJUnitStepExecution.run(SubmitJUnitStep.java:302)
Caused: java.lang.Exception
    at com.qasymphony.ci.plugin.action.SubmitJUnitStep$SubmitJUnitStepExecution.run(SubmitJUnitStep.java:305)
    at com.qasymphony.ci.plugin.action.SubmitJUnitStep$SubmitJUnitStepExecution.run(SubmitJUnitStep.java:240)
    at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution$1$1.call(SynchronousNonBlockingStepExecution.java:50)
    at hudson.security.ACL.impersonate(ACL.java:290)
    at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution$1.run(SynchronousNonBlockingStepExecution.java:47)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
    at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:748)
Finished: FAILURE

Jenkinsfile管道脚本

stage('Publish_qTest'){
        steps{
        submitJUnitTestResultsToqTest([apiKey: 'f8810j2w-d123-1110-e22a-2c5ae5b123cd', containerID: 380012, containerType: 'release', createTestCaseForEachJUnitTestClass: true, createTestCaseForEachJUnitTestMethod: false, overwriteExistingTestSteps: true, parseTestResultsFromTestingTools: true, parseTestResultsPattern: './*.xml', projectID: 12345, qtestURL: 'https://orguk.qtestnet.com/', submitToAReleaseAsSettingFromQtest: true, submitToExistingContainer: false, utilizeTestResultsFromCITool: false])
          }
        }

1 个答案:

答案 0 :(得分:0)

您应该转到设置->自动化设置,并确保已在Qtest实例上启用CI工具集成。

基本上需要先启用它,然后才能进行报告。