From f6ff82769858b31ae39f89b7537fd4c00dd8f628 Mon Sep 17 00:00:00 2001 From: Sean Weiser <125889608+sean-livefront@users.noreply.github.com> Date: Thu, 28 Dec 2023 15:09:04 -0600 Subject: [PATCH] Omit fdroid debug tests and select the standard flavor by default (#446) --- .github/workflows/run-check.yml | 2 +- app/build.gradle.kts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-check.yml b/.github/workflows/run-check.yml index d7540d20ef..0df22a4c7e 100644 --- a/.github/workflows/run-check.yml +++ b/.github/workflows/run-check.yml @@ -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: diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 9f7d06e28d..40321d5b09 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -53,6 +53,7 @@ android { flavorDimensions += listOf("mode") productFlavors { create("standard") { + isDefault = true dimension = "mode" } create("fdroid") {