aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Desprez <jdesprez@google.com>2021-02-24 17:03:17 +0000
committerJulien Desprez <jdesprez@google.com>2021-02-25 03:25:40 +0000
commitc584a577cda484e022a6b01e04e90161697f2236 (patch)
treed2a8615b53cbd8d2a5add45543e271b5664861d7
parente2309a4fbb5ac0febbd006f1c46445fc758faf7f (diff)
downloadcaliper-c584a577cda484e022a6b01e04e90161697f2236.tar.gz
Mark caliper-tests as not unit tests
They currently require some external jar which doesn't seem to be passed as data from the target. Change-Id: Iad340242cf3e6c90e6f02c685b9a685f3ab20e32 Test: presubmit Bug: 180736967
-rw-r--r--Android.bp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index e0ee8da..6d4619b 100644
--- a/Android.bp
+++ b/Android.bp
@@ -113,6 +113,11 @@ java_test_host {
"junit",
"mockito",
],
+ // Avoid the tests running as unit tests. They have some jar requirement that doesn't currently
+ // quite work in CI.
+ test_options: {
+ unit_test: false,
+ },
// Use Dagger2 annotation processor
plugins: ["dagger2-compiler"],