AntennaPod/.github/workflows/runTests.sh

9 lines
306 B
Bash

runTests() {
./gradlew connectedPlayDebugAndroidTest \
-Pandroid.testInstrumentationRunnerArguments.notAnnotation=de.test.antennapod.IgnoreOnCi \
| grep -v "V/InstrumentationResultParser: INSTRUMENTATION_STATUS"
}
# Retry tests to make them less flaky
runTests || runTests || runTests