Skip to content

Commit

Permalink
more skips
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Clark committed May 1, 2024
1 parent c217569 commit 4162c1a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check-rstan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
build_args: 'c("--no-manual", "--no-build-vignettes")'
args: 'c("--no-manual", "--as-cran", "--ignore-vignettes")'
args: 'c("--no-examples", "--no-manual", "--as-cran", "--ignore-vignettes")'
Binary file modified src/mvgam.dll
Binary file not shown.
9 changes: 4 additions & 5 deletions tests/testthat/test-mvgam_priors.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
context("mvgam_priors")

# Generating this many model skeletons takes time; CRAN will complain
skip_on_cran()

test_that("get_mvgam_priors works for a variety of ma and cor trends", {
priors <- get_mvgam_priors(y ~ s(season, k = 7),
trend_model = 'RW',
Expand Down Expand Up @@ -34,11 +37,7 @@ test_that("get_mvgam_priors works for a variety of ma and cor trends", {

})

set.seed(100)
beta_data <- sim_mvgam(family = betar(),
trend_model = 'GP',
trend_rel = 0.5,
T = 60)

test_that("get_mvgam_priors finds all classes for which priors can be specified", {
beta_data$data_train$cov <- rnorm(NROW(beta_data$data_train))
beta_data$data_train$cov2 <- rnorm(NROW(beta_data$data_train))
Expand Down

0 comments on commit 4162c1a

Please sign in to comment.