Skip to content

Commit

Permalink
Hotfix: Don't skip stan locally when testing
Browse files Browse the repository at this point in the history
  • Loading branch information
seabbs committed Sep 11, 2024
1 parent b1289c7 commit cf06dba
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
7 changes: 5 additions & 2 deletions tests/testthat/test-stan-expgrowth.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
skip_on_cran()
skip_on_os("windows")
skip_on_os("mac")
if (!on_ci()) {
skip_on_os("windows")
skip_on_os("mac")
}


test_that("Stan expgrowth_pdf matches R dexpgrowth", {
x <- seq(0, 1, by = 0.1)
Expand Down
7 changes: 5 additions & 2 deletions tests/testthat/test-stan-primary_censored_integrand.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
skip_on_cran()
skip_on_os("windows")
skip_on_os("mac")
if (!on_ci()) {
skip_on_os("windows")
skip_on_os("mac")
}


test_that("Stan primary_censored_integrand produces expected output", {
x <- 4.5
Expand Down
7 changes: 5 additions & 2 deletions tests/testthat/test-stan-rpd-primarycensoreddist.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
skip_on_cran()
skip_on_os("windows")
skip_on_os("mac")
if (!on_ci()) {
skip_on_os("windows")
skip_on_os("mac")
}


test_that("Stan primary_censored_dist_cdf matches R pprimarycensoreddist", {
d_values <- list(
Expand Down

0 comments on commit cf06dba

Please sign in to comment.