Podcini-podcast/.github/workflows/runEmulatorTests.sh

12 lines
283 B
Bash
Raw Normal View History

2024-02-05 21:50:43 +01:00
#!/bin/zsh
set -o pipefail
runTests() {
./gradlew connectedPlayDebugAndroidTest connectedDebugAndroidTest \
2024-02-14 09:07:17 +01:00
-Pandroid.testInstrumentationRunnerArguments.notAnnotation=de.test.podvinci.IgnoreOnCi
2024-02-05 21:50:43 +01:00
}
# Retry tests to make them less flaky
runTests || runTests || runTests