Skip to content

Commit

Permalink
fix C stack issues on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mdancho84 committed Jul 16, 2021
1 parent c9d01e1 commit b0139fa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions tests/testthat/test-aglo-deepstate.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ test_that("deep_state: model fitting", {

skip_if_no_gluonts()

skip_on_ci() # Error: C stack usage 15940564 is too close to the limit


# Model Spec
model_spec <- deep_state(
Expand Down
2 changes: 2 additions & 0 deletions tests/testthat/test-aglo-gp_forecaster.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ test_that("gp_forecaster: model fitting", {

skip_if_no_gluonts()

skip_on_ci() # Error: C stack usage 15940564 is too close to the limit

# Model Spec
model_spec <<- gp_forecaster(
id = "id",
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-algo-nbeats-ensemble.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test_that("nbeats ensemble: model fitting", {

skip_if_no_gluonts()

skip_on_ci() # N-BEATS models are very large, skip on CI to reduce memory load
# skip_on_ci()

# Model Spec
model_spec <- nbeats(
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-algo-nbeats.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ test_that("nbeats: model fitting", {

skip_if_no_gluonts()

skip_on_ci() # N-BEATS models are very large, skip on CI to reduce memory load
# skip_on_ci()

# ** MODEL FIT

Expand Down

0 comments on commit b0139fa

Please sign in to comment.