Skip to content

Commit

Permalink
skip tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Oct 3, 2023
1 parent 791280a commit 540d796
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/testthat/test-describe_posterior.R
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ test_that("describe_posterior", {

# brms -------------------------------------------------

skip_on_os("windows")
x <- suppressWarnings(brms::brm(mpg ~ wt + (1 | cyl) + (1 + wt | gear), data = mtcars, refresh = 0))
rez <- describe_posterior(x, centrality = "all", dispersion = TRUE, ci = c(0.8, 0.9))

Expand Down
2 changes: 2 additions & 0 deletions tests/testthat/test-rope.R
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ test_that("rope", {


skip_if_not_or_load_if_installed("brms")
skip_on_os("windows")

set.seed(123)
model <- suppressWarnings(brms::brm(mpg ~ wt + gear, data = mtcars, iter = 500))
rope <- rope(model, verbose = FALSE)
Expand Down

0 comments on commit 540d796

Please sign in to comment.