From d29b70c1b8c91044e02bc7148b56afe896c8fa98 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 4 Feb 2024 23:27:43 +0100 Subject: [PATCH] fix --- tests/testthat/test-rope.R | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/testthat/test-rope.R b/tests/testthat/test-rope.R index 844008153..4916cd414 100644 --- a/tests/testthat/test-rope.R +++ b/tests/testthat/test-rope.R @@ -81,7 +81,9 @@ test_that("rope (brms)", { expect_equal(rope$ROPE_Percentage, c(0.00, 0.00, 0.50), tolerance = 0.1) }) -model <- brm(bf(mvbind(mpg, disp) ~ wt + gear) + set_rescor(TRUE), data = mtcars, iter = 500, refresh = 0) +skip_on_os("mac") + +model <- suppressWarnings(brm(bf(mvbind(mpg, disp) ~ wt + gear) + set_rescor(TRUE), data = mtcars, iter = 500, refresh = 0)) rope <- rope(model, verbose = FALSE) test_that("rope (brms, multivariate)", {