A Gradle plugin for running Android instrumentation tests with Spoon.
Add to your build.gradle
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'de.felixschulze.gradle:gradle-spoon-plugin:0.9.6+'
}
}
apply plugin: 'spoon'
Add to your build.gradle
spoon {
teamCityLog = true
debug = true
failOnFailure = false
}
teamCityLog
: Add features for TeamCitydebug
: Activate debug output for spoonfailOnFailure
: Deactivate exit code on failure
gradle-spoon-plugin is available under the MIT license. See the LICENSE file for more info.