mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-12-01 12:31:45 +00:00
20 lines
459 B
Bash
20 lines
459 B
Bash
#!/bin/bash
|
|
|
|
set -o pipefail
|
|
adb logcat -c
|
|
|
|
runTests() {
|
|
./gradlew connectedPlayDebugAndroidTest connectedDebugAndroidTest \
|
|
-Pandroid.testInstrumentationRunnerArguments.notAnnotation=de.test.antennapod.IgnoreOnCi
|
|
}
|
|
|
|
# Retry tests to make them less flaky
|
|
if runTests || runTests || runTests; then
|
|
echo "Tests succeeded"
|
|
else
|
|
echo "Tests FAILED. Dumping logcat:"
|
|
adb logcat -d > app/build/reports/androidTests/logcat.txt
|
|
exit 1
|
|
fi
|
|
|