Skip to content

Commit f3f5f6a

Browse files
authored
Update android-test.yml
1 parent 1069dad commit f3f5f6a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/android-test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,12 @@ jobs:
6969
adb wait-for-device
7070
adb shell "while [[ -z \$(getprop sys.boot_completed) ]]; do sleep 1; done"
7171
echo "Device is ready, running tests..."
72-
ls -la Android/wallet # Debugging step to check if build.gradle exists
72+
echo "Checking gradlew exists in Android directory..."
73+
ls -la Android # Ensure gradlew is here
7374
cd Android
74-
./gradlew :wallet:connectedDebugAndroidTest --stacktrace # Correct Gradle command
75+
chmod +x gradlew # Ensure it's executable
76+
./gradlew :wallet:connectedDebugAndroidTest --stacktrace # Run the correct task
77+
7578
7679
# Upload test reports for debugging
7780
- name: Upload Test Reports

0 commit comments

Comments
 (0)