diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1361075ec..000000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: android -jdk: openjdk7 - -android: - components: - - build-tools-23.0.1 - - android-23 - - extra - - addon - - sys-img-armeabi-v7a-android-21 - -before_script: - - echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a -s "480x800" - - emulator -avd test -no-skin -no-audio -no-window & - - android-wait-for-emulator - - adb shell input keyevent 82 & - -script: - - ./gradlew connectedAndroidTest - - cat app/build/reports/androidTests/connected/*html | awk '/
/ { on=1 } /<\/pre>/ { on = 0 } { if(on) print }'
diff --git a/circle.yml b/circle.yml
index 87496af48..368dbe466 100644
--- a/circle.yml
+++ b/circle.yml
@@ -11,5 +11,5 @@ test:
     - circle-android wait-for-boot
     - adb shell input keyevent 82
     - ./gradlew connectedAndroidTest
-    - cp -r my-project/build/outputs $CIRCLE_ARTIFACTS
-    - cp -r my-project/build/outputs/androidTest-results/* $CIRCLE_TEST_REPORTS
\ No newline at end of file
+    - cp -r app/build/outputs $CIRCLE_ARTIFACTS || echo ok
+    - cp -r app/build/reports/androidTests/connected/* $CIRCLE_TEST_REPORTS || echo ok
\ No newline at end of file