A Gradle plugin for running Android monkey tests.
Add to your build.gradle
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath group: 'com.autoscout24.gradle', name: 'gradle-monkey-plugin', version: '0.2+'
}
}
apply plugin: 'monkey'Add to your build.gradle
monkey {
teamCityLog = true
eventCount = 1000
failOnFailure = false
install = true
}teamCityLog: Add features for TeamCityeventCount: Number of monkey eventsfailOnFailure: Deactivate exit code on failureinstall: Reinstalls the APK first
gradle-monkey-plugin is available under the MIT license. See the LICENSE file for more info.
