From 5ff5392d5fca0da8860aea3dbb218d6821012a0d Mon Sep 17 00:00:00 2001 From: "dyfan.jones" Date: Wed, 28 Jun 2023 21:46:46 +0100 Subject: [PATCH] skip test on github actions due to flaky network --- make.paws/tests/testthat/test_docs.R | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/make.paws/tests/testthat/test_docs.R b/make.paws/tests/testthat/test_docs.R index 62ecc631a5..3855a47a1f 100644 --- a/make.paws/tests/testthat/test_docs.R +++ b/make.paws/tests/testthat/test_docs.R @@ -595,7 +595,7 @@ test_that("convert", { expect_equal(convert(text), expected) }) -test_that("check links", { +test_that("check links part1", { text <- "foo" expected <- c("[foo](http://www.example.com/)") expect_equal(convert(text), expected) @@ -627,7 +627,10 @@ test_that("check links", { text <- "foo" expected <- c("[foo](https://example.com/)") expect_equal(convert(text), expected) +}) +test_that("check links part2", { + skip_on_ci() text <- "foo" expected <- c("[foo](https://httpbin.org/anything#foo?bar=baz)") expect_equal(convert(text), expected)