目前,我正在评估ElasTest。我也尝试了Jenkins Plguin,但控制台输出未发送到ElasTest。
我尝试了示例代码片段:
elastest(surefireReportsPattern: '**/target/surefire-reports/TEST-*.xml', project: 'Jenkins Examples') {
stage ('Executing Test') {
echo 'Set up test environment'
mvnHome = tool 'maven-3.3.9'
echo 'Cloning repository'
git 'https://github.com/elastest/demo-projects'
echo 'Run test'
sh "cd ./unit/junit5-unit-test;'${mvnHome}/bin/mvn' -B -DforkCount=0 test"
step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/TEST-*.xml'])
}
}
答案 0 :(得分:0)
我需要知道几件事:
如果您使用自己的Jenkins实例,请确保Jenkins可以与ElasTest通信并正确配置插件。如果ElasTest在服务器上,请按照文档中的说明打开所需的端口:https://elastest.io/docs/deploying/ubuntu/
您可以在此处找到有关如何使用ElasTest插件的更多信息:https://elastest.io/docs/tutorials/e2e-testing/