AntennaPod/.github/workflows/runEmulatorTests.sh

12 lines
285 B
Bash
Raw Normal View History

#!/bin/zsh
set -o pipefail
2020-01-07 22:13:56 +01:00
runTests() {
./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