我按照 jenkins-php.org 创建了一个项目。一切正常,但我无法跳过 PHPunit 测试。跳过 PHPUnitTest 以避免错误的简单方法可能是什么......最初我认为这很容易,我从代码中删除了所有实例,但我仍然能够看到这个错误,如果项目我也无法生成 phpdoc没有测试文件...请帮助
问问题
46 次
2 回答
0
一种可能性是删除目标,该目标在执行 ANT 时从依赖目标列表中执行 PHPUnit。full-build
因此,例如, 如果 ANT 正在执行目标,请更改
<target name="full-build"
depends="prepare,static-analysis,phpunit,phpdox,-check-failure"
description="Performs static analysis, runs the tests, and generates project documentation"/>
至
<target name="full-build"
depends="prepare,static-analysis,phpdox,-check-failure"
description="Performs static analysis, runs the tests, and generates project documentation"/>
注意属性值phpunit
的缺失。depends
另一种可能性是编写一个除了$this->assertTrue(true);
.
于 2015-09-03T05:11:12.323 回答
0
在 phpunit.xml 中设置为 false 以避免致命错误并删除发布 xUnit 测试结果报告整个块 jenkins GUI 项目配置以避免构建完成状态失败......。请记住构建会成功.....另外感谢您的帮助Havelock。
于 2015-09-03T12:17:29.417 回答