From 97b98a872d765801cdc47d94ec1b432357672604 Mon Sep 17 00:00:00 2001 From: "Alinson S. Xavier" Date: Tue, 24 Jun 2025 22:22:14 -0500 Subject: [PATCH] EmptyListViewTest: Ignore non-deterministic test failures --- .../uhabits/activities/habits/list/views/EmptyListViewTest.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/uhabits-android/src/androidTest/java/org/isoron/uhabits/activities/habits/list/views/EmptyListViewTest.kt b/uhabits-android/src/androidTest/java/org/isoron/uhabits/activities/habits/list/views/EmptyListViewTest.kt index b0f19aa31..a37d85234 100644 --- a/uhabits-android/src/androidTest/java/org/isoron/uhabits/activities/habits/list/views/EmptyListViewTest.kt +++ b/uhabits-android/src/androidTest/java/org/isoron/uhabits/activities/habits/list/views/EmptyListViewTest.kt @@ -22,6 +22,7 @@ package org.isoron.uhabits.activities.habits.list.views import androidx.test.ext.junit.runners.AndroidJUnit4 import androidx.test.filters.MediumTest import org.isoron.uhabits.BaseViewTest +import org.junit.Ignore import org.junit.Test import org.junit.runner.RunWith @@ -36,6 +37,7 @@ class EmptyListViewTest : BaseViewTest() { private val path = "habits/list/EmptyListView" @Test + @Ignore("non-deterministic failure") fun testRender_done() { val view = EmptyListView(targetContext) view.showDone() @@ -44,6 +46,7 @@ class EmptyListViewTest : BaseViewTest() { } @Test + @Ignore("non-deterministic failure") fun testRender_empty() { val view = EmptyListView(targetContext) view.showEmpty()