R Under development (unstable) (2026-03-25 r89703 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) > library(mfrmr) > > is_cran_check <- local({ + env <- Sys.getenv("NOT_CRAN") + if (identical(env, "")) { + !interactive() + } else { + !isTRUE(as.logical(env)) + } + }) > > cran_filter <- paste( + c( + "anchor-equating", + "api-coverage-gaps", + "api-final-coverage", + "bubble-chart", + "bundle-coverage", + "core-coverage", + "core-coverage-gaps", + "core-workflow", + "coverage-push-95", + "data-processing", + "dif-module", + "draw-coverage", + "edge-cases", + "error-handling", + "estimation-core", + "expanded-summary-plot", + "exception-regression", + "export-bundles", + "facet-dashboard", + "facet-equivalence", + "facets-column-contract", + "facets-metric-contract", + "facets-parity-report", + "facets-mode-api", + "final-coverage-boost", + "identifiability-constraints", + "numerical-validation", + "output-stability", + "parameter-recovery", + "plot-customization", + "prediction", + "qc-pipeline", + "reference-benchmark", + "remaining-coverage", + "report-functions", + "reporting-coverage", + "reporting-checklist", + "reporting-gaps", + "simulation-design" + ), + collapse = "|" + ) > > if (is_cran_check) { + # Keep CRAN checks under the check-farm time budget by skipping + # long integration and coverage-expansion suites. + test_check("mfrmr", filter = cran_filter, invert = TRUE) + } else { + test_check("mfrmr") + } [ FAIL 0 | WARN 0 | SKIP 0 | PASS 72 ] > > proc.time() user system elapsed 18.87 1.04 20.00