2024-02-05 21:50:43 +01:00
|
|
|
#!/bin/zsh
|
|
|
|
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
runTests() {
|
|
|
|
./gradlew connectedPlayDebugAndroidTest connectedDebugAndroidTest \
|
2024-08-09 21:36:06 +02:00
|
|
|
-Pandroid.testInstrumentationRunnerArguments.notAnnotation=de.test.podcini.IgnoreOnCi
|
2024-02-05 21:50:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Retry tests to make them less flaky
|
|
|
|
runTests || runTests || runTests
|