From 5d505af10f718cf219788301eba6242bdb280a93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20G=C3=B6ransson?= Date: Tue, 30 Jul 2024 15:01:56 +0200 Subject: [PATCH] Fix run test locally script --- android/scripts/run-instrumented-tests-locally.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/android/scripts/run-instrumented-tests-locally.sh b/android/scripts/run-instrumented-tests-locally.sh index 4a642356eb01..d8a4cad8abd4 100755 --- a/android/scripts/run-instrumented-tests-locally.sh +++ b/android/scripts/run-instrumented-tests-locally.sh @@ -7,4 +7,7 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd "$SCRIPT_DIR"/.. ./gradlew assembleOssProdAndroidTest ./gradlew app:assembleOssProdDebug -"$SCRIPT_DIR"/run-instrumented-tests.sh app +REPORT_DIR=$(mktemp -d) +export REPORT_DIR +"$SCRIPT_DIR"/run-instrumented-tests.sh --test-type app --infra-flavor prod --billing-flavor oss +