tests/testthat/setup.R

library("mlr3")
library("checkmate")

old_opts = options(
  warnPartialMatchArgs = TRUE,
  warnPartialMatchAttr = TRUE,
  warnPartialMatchDollar = TRUE
)

# https://github.com/HenrikBengtsson/Wishlist-for-R/issues/88
old_opts = lapply(old_opts, function(x) if (is.null(x)) FALSE else x)

lg_mlr3 = lgr::get_logger("mlr3")
lg_rush = lgr::get_logger("rush")

old_threshold_mlr3 = lg_mlr3$threshold
old_threshold_rush = lg_rush$threshold

lg_mlr3$set_threshold(0)
lg_rush$set_threshold(0)
mlr-org/mlr3fselect documentation built on July 5, 2025, 3:22 a.m.