Last updated on 2026-08-05 09:50:27 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.3.5 | 2.19 | 50.92 | 53.11 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.3.5 | 1.70 | 38.65 | 40.35 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.3.5 | 80.83 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 0.3.5 | 44.13 | ERROR | |||
| r-devel-windows-x86_64 | 0.3.5 | 4.00 | 69.00 | 73.00 | OK | |
| r-patched-linux-x86_64 | 0.3.5 | 2.34 | 45.25 | 47.59 | OK | |
| r-release-linux-x86_64 | 0.3.5 | 1.69 | 43.85 | 45.54 | OK | |
| r-release-macos-arm64 | 0.3.5 | 1.00 | 22.00 | 23.00 | OK | |
| r-release-macos-x86_64 | 0.3.5 | 2.00 | 67.00 | 69.00 | OK | |
| r-release-windows-x86_64 | 0.3.5 | 4.00 | 69.00 | 73.00 | OK | |
| r-oldrel-macos-arm64 | 0.3.5 | 1.00 | 24.00 | 25.00 | OK | |
| r-oldrel-macos-x86_64 | 0.3.5 | 2.00 | 63.00 | 65.00 | OK | |
| r-oldrel-windows-x86_64 | 0.3.5 | 5.00 | 80.00 | 85.00 | OK |
Version: 0.3.5
Check: tests
Result: ERROR
Running ‘test-as.data.frame.R’
Running ‘test-build_r_pkg.R’
Running ‘test-export.R’
Running ‘test-format_record.R’
Running ‘test-keyring.R’
Running the tests in ‘tests/test-build_r_pkg.R’ failed.
Complete output:
> library(REDCapExporter)
> temppath <- tempdir()
>
> msgs <- character()
> withCallingHandlers(
+ {
+ build_r_data_package(
+ x = avs_raw_core,
+ path = temppath,
+ author_roles = list(dewittp = c("cre", "aut"))
+ )
+ },
+ message = function(m) {
+ msgs <<- c(msgs, conditionMessage(m))
+ invokeRestart("muffleMessage")
+ }
+ )
>
> pkgdir <- file.path(temppath, "rcd14465")
>
> # check the DESCRIPTION file for the built package
> d <- read.dcf(file.path(pkgdir, "DESCRIPTION"))
> stopifnot(
+ d[1, "Package"] == "rcd14465",
+ grepl("\\d{4}\\.\\d{2}\\.\\d{2}\\.\\d{2}\\.\\d{2}", d[1, "Version"]),
+ all(c("knitr", "roxygen2") %in% trimws(strsplit(d[1, "Suggests"], ",")[[1]])),
+ d[1, "Config/roxygen2/version"] == "8.0.0"
+ )
Error: d[1, "Config/roxygen2/version"] == "8.0.0" is not TRUE
Execution halted
Flavor: r-devel-linux-x86_64-fedora-gcc