From aee3838ed5c6c05b064c3e2058e392d326d2c5f7 Mon Sep 17 00:00:00 2001 From: XiangRongLin <41164160+XiangRongLin@users.noreply.github.com> Date: Tue, 6 Apr 2021 18:26:06 +0200 Subject: [PATCH] Ignore unreliable SoundcloudGoPlusTrack.testRelatedItems --- .../soundcloud/SoundcloudStreamExtractorTest.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/extractor/src/test/java/org/schabi/newpipe/extractor/services/soundcloud/SoundcloudStreamExtractorTest.java b/extractor/src/test/java/org/schabi/newpipe/extractor/services/soundcloud/SoundcloudStreamExtractorTest.java index f8306668..55eb2ec3 100644 --- a/extractor/src/test/java/org/schabi/newpipe/extractor/services/soundcloud/SoundcloudStreamExtractorTest.java +++ b/extractor/src/test/java/org/schabi/newpipe/extractor/services/soundcloud/SoundcloudStreamExtractorTest.java @@ -1,6 +1,7 @@ package org.schabi.newpipe.extractor.services.soundcloud; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Test; import org.schabi.newpipe.downloader.DownloaderTestImpl; import org.schabi.newpipe.extractor.MediaFormat; @@ -93,6 +94,15 @@ public class SoundcloudStreamExtractorTest { } } + @Override + @Test + @Ignore("Unreliable, sometimes it has related items, sometimes it does not. See " + + "https://github.com/TeamNewPipe/NewPipeExtractor/runs/2280013723#step:5:263 " + + "https://github.com/TeamNewPipe/NewPipeExtractor/pull/601") + public void testRelatedItems() throws Exception { + super.testRelatedItems(); + } + @Override public StreamExtractor extractor() { return extractor; } @Override public StreamingService expectedService() { return SoundCloud; } @Override public String expectedName() { return "Places (feat. Ina Wroldsen)"; }