blob: c297932a73c6507646e8214d3cf2343a55a2ce61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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
|