R Under development (unstable) (2026-02-27 r89498 ucrt) -- "Unsuffered Consequences" Copyright (C) 2026 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(testthat) > > # the unit tests take pretty long, that can be a problem on WB and cran (and maybe annoying locally) > # so we run all tests only on travis and if a certain user env var is set > if (identical(Sys.getenv("TRAVIS"), "true") || identical(Sys.getenv("R_EXPENSIVE_TEST_OK"), "true") || identical(Sys.getenv("NOT_CRAN"), "true")) { + test_check("mlrMBO") + } else { + test_check("mlrMBO", filter = "((mbo_rf)|(mbo_km))") + } Loading required package: mlrMBO Loading required package: mlr Loading required package: ParamHelpers Loading required package: smoof Loading required package: checkmate [ FAIL 0 | WARN 0 | SKIP 0 | PASS 60 ] > > proc.time() user system elapsed 85.35 6.37 91.81