mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-01-03 20:41:06 +01:00
12 lines
285 B
Bash
12 lines
285 B
Bash
#!/bin/zsh
|
|
|
|
set -o pipefail
|
|
|
|
runTests() {
|
|
./gradlew connectedPlayDebugAndroidTest connectedDebugAndroidTest \
|
|
-Pandroid.testInstrumentationRunnerArguments.notAnnotation=de.test.antennapod.IgnoreOnCi
|
|
}
|
|
|
|
# Retry tests to make them less flaky
|
|
runTests || runTests || runTests
|