Files
AntennaPod/.github/workflows/runEmulatorTests.sh
2025-11-30 21:26:04 +01:00

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