R Under development (unstable) (2024-06-17 r86768 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 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) > library(iai) Attaching package: 'iai' The following object is masked from 'package:stats': predict The following objects are masked from 'package:base': apply, transform > > > reporters <- c("check") > > > # Configure junit if JUNIT_PATH is set > junit_path <- Sys.getenv("JUNIT_PATH", unset = NA) > if (!is.na(junit_path)) { + options(testthat.output_file = Sys.getenv("JUNIT_PATH")) + reporters <- c(reporters, "junit") + } > > > test_check("iai", reporter = reporters) [ FAIL 0 | WARN 0 | SKIP 66 | PASS 0 ] ══ Skipped tests (66) ══════════════════════════════════════════════════════════ • On CRAN (66): 'test_heuristics.R:5:3', 'test_heuristics.R:33:3', 'test_heuristics.R:60:3', 'test_heuristics.R:98:3', 'test_heuristics.R:143:3', 'test_heuristics.R:185:3', 'test_heuristics.R:223:3', 'test_heuristics.R:260:3', 'test_heuristics.R:321:3', 'test_heuristics.R:370:3', 'test_iaibase.R:8:3', 'test_iaibase.R:50:3', 'test_iaibase.R:74:3', 'test_iaibase.R:111:3', 'test_iaibase.R:161:3', 'test_iaibase.R:216:3', 'test_iaibase.R:243:3', 'test_iaibase.R:254:3', 'test_iaibase.R:272:3', 'test_iaibase.R:293:3', 'test_iaibase.R:305:3', 'test_iaibase.R:350:3', 'test_iaitrees.R:5:3', 'test_iaitrees.R:107:3', 'test_iaitrees.R:143:3', 'test_iaitrees.R:194:3', 'test_iaitrees.R:291:3', 'test_iaitrees.R:376:3', 'test_iaitrees.R:428:3', 'test_iaitrees.R:637:3', 'test_iaitrees.R:663:3', 'test_iaitrees.R:684:3', 'test_iaitrees.R:709:3', 'test_iaitrees.R:730:3', 'test_iaitrees.R:753:3', 'test_iaitrees.R:791:3', 'test_iaitrees.R:835:3', 'test_optimalfeatureselection.R:5:3', 'test_optimalfeatureselection.R:78:3', 'test_optimalfeatureselection.R:117:3', 'test_optimaltrees.R:5:3', 'test_optimaltrees.R:29:3', 'test_optimaltrees.R:53:3', 'test_optimaltrees.R:77:3', 'test_optimaltrees.R:107:3', 'test_optimaltrees.R:144:3', 'test_optimaltrees.R:151:3', 'test_optimaltrees.R:197:3', 'test_optimaltrees.R:219:3', 'test_optimaltrees.R:254:3', 'test_optimaltrees.R:283:3', 'test_optimpute.R:9:3', 'test_optimpute.R:42:3', 'test_optimpute.R:52:3', 'test_optimpute.R:86:3', 'test_optimpute.R:93:3', 'test_rewardestimation.R:5:3', 'test_rewardestimation.R:17:3', 'test_rewardestimation.R:28:3', 'test_rewardestimation.R:40:3', 'test_rewardestimation.R:52:3', 'test_rewardestimation.R:119:3', 'test_rewardestimation.R:156:3', 'test_rewardestimation.R:229:3', 'test_rewardestimation.R:327:3', 'test_rewardestimation.R:350:3' [ FAIL 0 | WARN 0 | SKIP 66 | PASS 0 ] > > proc.time() user system elapsed 2.46 0.35 2.81