2020-05-03 00:03:59 +02:00
|
|
|
#!/bin/zsh
|
|
|
|
|
|
|
|
set -o pipefail
|
|
|
|
|
2020-01-07 22:13:56 +01:00
|
|
|
runTests() {
|
2022-01-22 16:12:49 +01:00
|
|
|
./gradlew connectedPlayDebugAndroidTest connectedDebugAndroidTest \
|
2022-08-20 21:05:10 +02:00
|
|
|
-Pandroid.testInstrumentationRunnerArguments.notAnnotation=de.test.antennapod.IgnoreOnCi
|
2020-01-07 22:13:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Retry tests to make them less flaky
|
|
|
|
runTests || runTests || runTests
|