andreaswittig / gradle-spoon-plugin

A Gradle plugin for running Android instrumentation tests with Spoon.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gradle-spoon-plugin Build Status

A Gradle plugin for running Android instrumentation tests with Spoon.

Basic usage

Add to your build.gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'de.felixschulze.gradle:gradle-spoon-plugin:0.9.6+'
    }
}

apply plugin: 'spoon'

Advanced usage

Add to your build.gradle

spoon {
    teamCityLog = true
    debug = true
    failOnFailure = false
}
  • teamCityLog: Add features for TeamCity
  • debug: Activate debug output for spoon
  • failOnFailure: Deactivate exit code on failure

Changelog

Releases

License

gradle-spoon-plugin is available under the MIT license. See the LICENSE file for more info.

About

A Gradle plugin for running Android instrumentation tests with Spoon.

License:MIT License


Languages

Language:Groovy 100.0%