From 0257239057bd4773d12709aea4784e525cb8f01b Mon Sep 17 00:00:00 2001 From: hmalik144 Date: Mon, 13 Mar 2023 22:49:57 +0000 Subject: [PATCH] - CircleCI update Took 10 minutes --- .circleci/config.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9c012a2..a8864e3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -37,17 +37,21 @@ jobs: # The next step will run the unit tests - android/run-tests: test-command: ./gradlew testDriverDebugUnitTest --continue - # Then start the firebase emulators for the Instrumentation tests! + # Install Firebase tools needed for firebase emulator - run: - name: Setup Firebase Emulators + name: Install firebase tools command: | curl -sL firebase.tools | bash + # Then start firebase emulator in the background + - run: + name: Start firebase emulator + command: | firebase emulators:start + background: true # Then start the emulator and run the Instrumentation tests! - android/start-emulator-and-run-tests: test-command: ./gradlew connectedDebugAndroidTest system-image: system-images;android-25;google_apis;x86 - # And finally run the release build # - run: # name: Assemble release build