From 611974ecbf11fee8e07a3e9cb1b86e4f8fc00708 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Fri, 19 Feb 2021 08:47:31 +0100 Subject: [PATCH] @Ignore test that covers when 1000 apps are installed on the device --- app/src/test/java/org/fdroid/fdroid/data/AppProviderTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/test/java/org/fdroid/fdroid/data/AppProviderTest.java b/app/src/test/java/org/fdroid/fdroid/data/AppProviderTest.java index 80ed08f39..4053410ed 100644 --- a/app/src/test/java/org/fdroid/fdroid/data/AppProviderTest.java +++ b/app/src/test/java/org/fdroid/fdroid/data/AppProviderTest.java @@ -12,6 +12,7 @@ import org.fdroid.fdroid.data.Schema.AppMetadataTable.Cols; import org.junit.After; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.robolectric.RobolectricTestRunner; @@ -63,6 +64,7 @@ public class AppProviderTest extends FDroidProviderTest { * the {@link AppProvider} used to stumble across this bug when asking for installed apps, * and the device had over 1000 apps installed. */ + @Ignore("takes a long time and covers a rare situation (over 1000 apps installed)") @Test public void testMaxSqliteParams() { insertApp("com.example.app1", "App 1");