摘要:
1. 测试用例有失败时,会导致构建结果为unstable, 这个没啥关系 2. unstable https://github.com/jenkinsci/allure-plugin/issues/13 https://www.icode9.com/content-4-784901.html 阅读全文
摘要:
1. buildResult是针对整个Stages过程而言,stageResult是针对该Stage而言,而无论buildResult还是stageResult他们都有以下状态 always 不论当前状态是什么,都执行changed 只要当前完成状态与上一次完成状态不同就执行fixed 上一次完成状 阅读全文
摘要:
1. 流水线语法 node { stage('Example') { if (env.BRANCH_NAME == 'master') { echo 'I only execute on the master branch' } else { echo 'I execute elsewhere' } 阅读全文
摘要:
1. 官网链接 https://pytest-dependency.readthedocs.io/en/stable/ 这篇文章讲的很细了, 想了解更多, 看官方文档 参考链接:http://t.zoukankan.com/se7enjean-p-13513131.html 阅读全文