R Under development (unstable) (2024-11-13 r87330 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. > > run <- function() { + + on_cran <- !isTRUE(as.logical(Sys.getenv("NOT_CRAN", "false"))) + if (on_cran) { + message("env var 'NOT_CRAN=true' not defined; Skipping tests on CRAN") + return() + } + + if (!requireNamespace("testthat", quietly = TRUE)) { + message("'testthat' package not available; tests cannot be run") + return() + } + + options(error = traceback) + if (requireNamespace("rlang", quietly = TRUE)) + options(error = rlang::trace_back) + + library(testthat) + library(reticulate) + + test_check("reticulate") + + } > > run() env var 'NOT_CRAN=true' not defined; Skipping tests on CRAN NULL > > proc.time() user system elapsed 0.10 0.04 0.14