aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/build.gradle
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2015-06-17 18:30:58 +0200
committerVincent Breitmoser <valodim@mugenguild.com>2015-06-17 18:53:50 +0200
commit04d2b6a5076a1a7264687999152f8c24ece773ab (patch)
treed028024da0370f50eeed4bb1a76cf9c1a7baeb36 /OpenKeychain/build.gradle
parent9a82b33d1601a84cecf6fb88bd24e718dae44c18 (diff)
downloadopen-keychain-04d2b6a5076a1a7264687999152f8c24ece773ab.tar.gz
open-keychain-04d2b6a5076a1a7264687999152f8c24ece773ab.tar.bz2
open-keychain-04d2b6a5076a1a7264687999152f8c24ece773ab.zip
use regular runner for most cases
Diffstat (limited to 'OpenKeychain/build.gradle')
-rw-r--r--OpenKeychain/build.gradle8
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenKeychain/build.gradle b/OpenKeychain/build.gradle
index 491926a4e..e2d1dd8c8 100644
--- a/OpenKeychain/build.gradle
+++ b/OpenKeychain/build.gradle
@@ -114,7 +114,13 @@ android {
versionCode 32300
versionName "3.2.3"
applicationId "org.sufficientlysecure.keychain"
- testInstrumentationRunner "org.sufficientlysecure.keychain.JacocoWorkaroundJUnitRunner"
+ // the androidjunitrunner is broken regarding coverage, see here:
+ // https://code.google.com/p/android/issues/detail?id=170607
+ testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+ // this workaround runner fixes the coverage problem, BUT doesn't work
+ // with android studio single test execution. use it to generate coverage
+ // data, but keep the other one otherwis
+ // testInstrumentationRunner "org.sufficientlysecure.keychain.JacocoWorkaroundJUnitRunner"
}
compileOptions {