From e31febb1c4b7a6a4c6c83d22d455783a924ed509 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 d7540d20e..0df22a4c7 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 9f7d06e28..40321d5b0 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") {