diff --git a/.circleci/config.yml b/.circleci/config.yml index e769549..b0dae0f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,20 +25,20 @@ jobs: # Checkout the code as the first step. - checkout - # The next step will run the unit tests - - android/run-tests: - test-command: ./gradlew lint testDebug --continue - # Then start the emulator and run the Instrumentation tests! - android/start-emulator-and-run-tests: test-command: ./gradlew connectedCheck system-image: system-images;android-25;google_apis;x86 - # Then publish the results of the Instrumentation tests! + # Then publish the artifacts of the Instrumentation tests! - store_artifacts: - path: app/build/reports + path: app/build/reports/androidTests/connected destination: reports + # Then publish the results of the Instrumentation tests! + - store_test_results: + path: app/build/outputs/androidTest-results/connected + # Invoke jobs via workflows # See: https://circleci.com/docs/2.0/configuration-reference/#workflows workflows: