From b6308af353282d72e2a542b2811feb8902923c80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20G=C3=B6ransson?= Date: Tue, 17 Oct 2023 16:04:06 +0200 Subject: [PATCH] Add small script to run instrumented tests locally --- android/scripts/run-instrumented-tests-locally.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 android/scripts/run-instrumented-tests-locally.sh diff --git a/android/scripts/run-instrumented-tests-locally.sh b/android/scripts/run-instrumented-tests-locally.sh new file mode 100755 index 000000000000..359c648d30d9 --- /dev/null +++ b/android/scripts/run-instrumented-tests-locally.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + +set -eu + +SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +cd $SCRIPT_DIR/.. +./gradlew assembleOssProdAndroidTest +./gradlew app:assembleOssProdDebug +$SCRIPT_DIR/run-instrumented-tests.sh app