From b74c771c8ca3ba38fe2926e95e36e2d62d7519b4 Mon Sep 17 00:00:00 2001 From: mschubert Date: Wed, 15 Nov 2023 15:30:53 +0100 Subject: [PATCH] skip ssh tests on cran (irreproducible submission error) --- tests/testthat/test-7-ssh_proxy.r | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/testthat/test-7-ssh_proxy.r b/tests/testthat/test-7-ssh_proxy.r index d04ac3e..b95a449 100644 --- a/tests/testthat/test-7-ssh_proxy.r +++ b/tests/testthat/test-7-ssh_proxy.r @@ -6,6 +6,8 @@ has_localhost = has_connectivity("127.0.0.1") # the first test twice leads to a segfault; not sure why, fix this eventually test_that("simple forwarding works", { skip_if_not(has_localhost) + skip_on_cran() + m = methods::new(CMQMaster) p = methods::new(CMQProxy)#, m$context()) w = methods::new(CMQWorker)#, m$context()) @@ -30,6 +32,7 @@ test_that("simple forwarding works", { test_that("proxy communication yields submit args", { skip_if_not(has_localhost) + skip_on_cran() m = methods::new(CMQMaster) p = methods::new(CMQProxy)#, m$context())