gpt4 book ai didi

gradle - 如果排除了测试,如何在 Sonar 报告中保留最后的测试用例代码覆盖率

转载 作者:行者123 更新时间:2023-12-03 05:05:08 26 4
gpt4 key购买 nike

在 Jenkins 管道中,第一阶段是“逐步构建”阶段,

       if(env.RUN_TEST_CASE.toBoolean()){
bat "gradle clean build --no-daemon --no-build-cache"
} else {
bat "gradle clean build --no-daemon --no-build-cache -x test"
}

然后,“声纳代码分析”
       if(env.RUN_TEST_CASE.toBoolean()){
echo "sonrqube with test case"
bat 'gradle --info sonarqube'
}
else {
echo "sonrqube without test case"
bat 'gradle --info sonarqube -x test'
}

即使在声纳代码分析中排除了测试用例( link1)之后,它仍会将先前的覆盖率覆盖为零。它没有保留以前的值(value)。

如果排除了测试用例,有什么方法可以保留以前的值?

最佳答案

Is there any way to retain previous value if the test case is excluded?



没有

关于gradle - 如果排除了测试,如何在 Sonar 报告中保留最后的测试用例代码覆盖率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60701857/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com