// include this in your build.gradle file,
// and update the package selector lines
test {
// The excluded classes won't be called by the test step.
// They're for manual calls during devwrk only.
exclude 'devonly/sometests/**'
exclude '**/Bar.class'
}
5条答案
按热度按时间k3fezbri1#
您是否考虑过运行“组装”任务而不是“构建”任务?
5sxhfpxr2#
将“-x test”添加到运行配置中的程序参数
daupos2t3#
对我来说,我不得不把“-x”和“test”放在不同的行上,这样BuildShip才能工作。
a0zr77ik4#
在生成文件中添加代码以排除不运行的测试类。
如果你排除了所有的测试类,那么它实际上是在“跳过”测试步骤,实际上,测试步骤“运行”了,但是没有测试会运行。
这在开发过程中也很方便,但是有些测试只是为了开发工作,需要稍后整理。它也给了其他开发人员一个很好的提示(或提醒),在哪里可以找到可操作的开发测试。
a5g8bdjr5#
请尝试在运行配置的程序参数部分的两个单独行中添加-x和:test