Omit fdroid debug tests and select the standard flavor by default (#446)

This commit is contained in:
Sean Weiser 2023-12-28 15:09:04 -06:00 committed by Álison Fernandes
parent f528376c66
commit e31febb1c4
2 changed files with 2 additions and 1 deletions

View file

@ -37,7 +37,7 @@ jobs:
- name: Build and Run Check
# Run checks while excluding release-build tests, which are not configured to work properly
# with the Compose testing library.
run: ./gradlew check -x testStandardRelease -x testFdroidRelease koverXmlReportStandardDebug
run: ./gradlew check -x testStandardRelease -x testFdroidDebug -x testFdroidRelease koverXmlReportStandardDebug
- name: Danger
env:

View file

@ -53,6 +53,7 @@ android {
flavorDimensions += listOf("mode")
productFlavors {
create("standard") {
isDefault = true
dimension = "mode"
}
create("fdroid") {