From 781d3641d9e787071b55273d7907cc6b8167c8b8 Mon Sep 17 00:00:00 2001 From: Sean Barbeau Date: Thu, 2 Mar 2017 22:38:58 -0500 Subject: [PATCH] Don't run unit tests on Travis (#370) * It seems emulator-based unit testing is currently horribly broken due to issues with the API Level 23-25 emulators (http://stackoverflow.com/a/28751112/937715), so for now change to just building the project on Travis --- .travis.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 62529aa78..5399c69c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,9 +12,6 @@ env: global: - ANDROID_API_LEVEL=24 - ANDROID_BUILD_TOOLS_VERSION=23.0.3 - - ANDROID_ABI=armeabi-v7a - - ANDROID_TAG=google_apis - - ADB_INSTALL_TIMEOUT=20 # minutes (2 minutes by default) android: components: @@ -32,14 +29,6 @@ android: # Latest artifacts in local repository - extra-google-m2repository - extra-android-m2repository - # Specify at least one system image - - sys-img-armeabi-v7a-google_apis-$ANDROID_API_LEVEL - -before_script: - # Create and start emulator - - echo no | android create avd --force -n test -t "android-"$ANDROID_API_LEVEL --abi $ANDROID_ABI --tag $ANDROID_TAG - - emulator -avd test -no-skin -no-window & - - android-wait-for-emulator script: - - ./gradlew clean check connectedCheck -x library:signArchives -PdisablePreDex + - ./gradlew clean assembleDebug -x library:signArchives -PdisablePreDex