From a7272206444b81c172e2f57e772283447c15f2f3 Mon Sep 17 00:00:00 2001 From: samrobinson Date: Thu, 18 Nov 2021 11:39:25 +0000 Subject: [PATCH] Ignore manual test from the transformer_mobile_test target. In the near future, we will be able to specify which tests run on this target explicitly, at which point this ignore will be removed. PiperOrigin-RevId: 410758785 --- .../media3/transformer/RepeatedTranscodeTransformationTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/transformer/src/androidTest/java/androidx/media3/transformer/RepeatedTranscodeTransformationTest.java b/libraries/transformer/src/androidTest/java/androidx/media3/transformer/RepeatedTranscodeTransformationTest.java index bcd2bb7f1b..ee96fdf0d1 100644 --- a/libraries/transformer/src/androidTest/java/androidx/media3/transformer/RepeatedTranscodeTransformationTest.java +++ b/libraries/transformer/src/androidTest/java/androidx/media3/transformer/RepeatedTranscodeTransformationTest.java @@ -23,11 +23,13 @@ import androidx.media3.common.C; import androidx.media3.common.MimeTypes; import androidx.test.core.app.ApplicationProvider; import androidx.test.ext.junit.runners.AndroidJUnit4; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; /** Tests repeated transcoding operations (as a stress test and to help reproduce flakiness). */ @RunWith(AndroidJUnit4.class) +@Ignore("Internal - b/206914753") public final class RepeatedTranscodeTransformationTest { private static final int TRANSCODE_COUNT = 10;