My testing suite is made of multiple files. I would like to skip one of them on travis (the one related to fitting Bayesian models) because it takes to much time and fails.
I know that I can skip specific tests with testthat::skip_on_travis(). However, these work in a test_that block. Unfortunately, the part I wish to skip (from here to here) is mainly outside the test_that block (and is the model fitting occurring before testing).
I tried putting the model fitting inside a test_that block, but then the other blocks do not find the models. I also tried nested test_that block, but that seems not to work... any ideas?
Another option that seems to work is to check the environment variables:
if (Sys.getenv("USER") != "travis") {
# tests to be executed...
}
See also here: https://docs.travis-ci.com/user/environment-variables/#default-environment-variables
In your testthat.R file, you can use the filter argument to test_check in order to skip entire files conditionally. This mechanism can be used to skip collections of long tests on CRAN or Travis.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With