Skip to content

Commit

Permalink
Disabled flaky tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cyian-1756 committed Aug 18, 2019
1 parent a94ab58 commit 29a6374
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
import java.net.URL;

import com.rarchives.ripme.ripper.rippers.LusciousRipper;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

public class LusciousRipperTest extends RippersTest {
@Test
@Test @Disabled("Flaky in the CI")
public void testPahealRipper() throws IOException {
// a photo set
LusciousRipper ripper = new LusciousRipper(
Expand All @@ -20,7 +21,7 @@ public void testGetGID() throws IOException {
LusciousRipper ripper = new LusciousRipper(url);
assertEquals("h-na-alice-wa-suki-desu-ka-do-you-like-alice-when_321609", ripper.getGID(url));
}
@Test
@Test @Disabled("Flaky in the CI")
public void testGetNextPage() throws IOException {
URL multiPageAlbumUrl = new URL("https://luscious.net/albums/women-of-color_58/");
LusciousRipper multiPageRipper = new LusciousRipper(multiPageAlbumUrl);
Expand Down

0 comments on commit 29a6374

Please sign in to comment.