We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1069dad commit f3f5f6aCopy full SHA for f3f5f6a
.github/workflows/android-test.yml
@@ -69,9 +69,12 @@ jobs:
69
adb wait-for-device
70
adb shell "while [[ -z \$(getprop sys.boot_completed) ]]; do sleep 1; done"
71
echo "Device is ready, running tests..."
72
- ls -la Android/wallet # Debugging step to check if build.gradle exists
+ echo "Checking gradlew exists in Android directory..."
73
+ ls -la Android # Ensure gradlew is here
74
cd Android
- ./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
+
78
79
# Upload test reports for debugging
80
- name: Upload Test Reports
0 commit comments