From e6f4b9b33f4bc95ddf9e7bb064b819feee4794fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sun, 20 Oct 2024 19:57:57 +0200 Subject: [PATCH] Skip test on old Windows for now --- tests/testthat/test-signal.R | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/testthat/test-signal.R b/tests/testthat/test-signal.R index b1eb62706..d350094b8 100644 --- a/tests/testthat/test-signal.R +++ b/tests/testthat/test-signal.R @@ -1,5 +1,8 @@ test_that("long-running queries can be cancelled", { skip_if_not_installed("callr") + # Skip on Windows for R < 4.4, the signal doesn't seem to make it through + # (but works for the toy repository) + skip_if(getRversion() < "4.4.0" && .Platform$OS.type == "windows") r_session <- callr::r_session$new()