Podcini-podcast/.github/workflows/runEmulatorTests.sh

12 lines
282 B
Bash

#!/bin/zsh
set -o pipefail
runTests() {
./gradlew connectedPlayDebugAndroidTest connectedDebugAndroidTest \
-Pandroid.testInstrumentationRunnerArguments.notAnnotation=de.test.podcini.IgnoreOnCi
}
# Retry tests to make them less flaky
runTests || runTests || runTests