This commit is contained in:
Mario Danic 2017-02-25 03:00:36 +01:00
Родитель b25fb3005e
Коммит e4e5a249ba
2 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -8,7 +8,7 @@ pipeline:
# build app and assemble APK, in debug mode
- ./gradlew assembleDebug
# run all the local unit tests of app module
- ./gradlew :testDebug
- ./gradlew :testGenericDebugUnitTest
# run all the instrumented tests of app module - DISABLED until we get an stable setup for Espresso in Travis
# - ./gradlew connectedDebugAndroidTest --info
# install app, then assemble and install instrumented tests of app module

Просмотреть файл

@ -38,6 +38,13 @@ repositories {
}
}
tasks.withType(Test) {
/// increased logging for tests
testLogging {
events "passed", "skipped", "failed"
}
}
android {
lintOptions {
abortOnError true
@ -96,6 +103,7 @@ android {
packagingOptions {
exclude 'META-INF/LICENSE.txt'
}
task checkstyle(type: Checkstyle) {
configFile = file("${rootProject.projectDir}/checkstyle.xml")
configProperties.checkstyleSuppressionsPath = file("${project.rootDir}/config/quality/checkstyle/suppressions.xml").absolutePath