现在,我正在为基于Gradle的Android项目配置Travis CI。是否可以临时禁用从Travis启动的测试,只知道 - 是否可以构建项目?
答案 0 :(得分:7)
默认情况下,如果找不到./gradlew build connectedCheck
部分,Travis-ci会执行script:
。
如果将下一个代码添加到所有测试模块(build.gradle
文件),则会忽略失败的测试。
project.gradle.taskGraph.whenReady {
connectedAndroidTest {
ignoreFailures = true
}
}
另一种选择是跳过安装阶段,只使用./gradlew build
(或./gradle build
没有gradle包装器),因此不会执行测试。
install:
# Check install section: http://docs.travis-ci.com/user/build-configuration/#install
# If you'd like to skip the install stage entirely, set it to true and nothing will be run.
- true
script:
# By default Travis-ci executes './gradlew build connectedCheck' if no 'script:' section found.
- ./gradlew build
您可以使用-x
命令行参数来排除任何任务(see this answer)。
gradle build -x test
答案 1 :(得分:0)