13 lines
335 B
Bash
13 lines
335 B
Bash
#!/bin/zsh
|
|
|
|
set -o pipefail
|
|
|
|
runTests() {
|
|
./gradlew connectedPlayDebugAndroidTest \
|
|
-Pandroid.testInstrumentationRunnerArguments.notAnnotation=de.test.antennapod.IgnoreOnCi \
|
|
| grep -v "V/InstrumentationResultParser: INSTRUMENTATION_STATUS"
|
|
}
|
|
|
|
# Retry tests to make them less flaky
|
|
runTests || runTests || runTests
|