• using R version 4.6.0 alpha (2026-03-26 r89725)
  • using platform: aarch64-apple-darwin23
  • R was compiled by     Apple clang version 17.0.0 (clang-1700.3.19.1)     GNU Fortran (GCC) 14.2.0
  • running under: macOS Sequoia 15.7.1
  • using session charset: UTF-8 * current time: 2026-03-28 10:42:33 UTC
  • checking for file ‘readit/DESCRIPTION’ ... OK
  • this is package ‘readit’ version ‘1.0.0’
  • package encoding: UTF-8
  • checking package namespace information ... OK
  • checking package dependencies ... OK
  • checking if this is a source package ... OK
  • checking if there is a namespace ... OK
  • checking for executable files ... OK
  • checking for hidden files and directories ... OK
  • checking for portable file names ... OK
  • checking for sufficient/correct file permissions ... OK
  • checking whether package ‘readit’ can be installed ... [1s/1s] OK See the install log for details.
  • checking installed package size ... OK
  • checking package directory ... OK
  • checking DESCRIPTION meta-information ... OK
  • checking top-level files ... OK
  • checking for left-over files ... OK
  • checking index information ... OK
  • checking package subdirectories ... OK
  • checking code files for non-ASCII characters ... OK
  • checking R files for syntax errors ... OK
  • checking whether the package can be loaded ... [0s/0s] OK
  • checking whether the package can be loaded with stated dependencies ... [0s/0s] OK
  • checking whether the package can be unloaded cleanly ... [0s/0s] OK
  • checking whether the namespace can be loaded with stated dependencies ... [0s/0s] OK
  • checking whether the namespace can be unloaded cleanly ... [0s/0s] OK
  • checking loading without being on the library search path ... [0s/0s] OK
  • checking dependencies in R code ... OK
  • checking S3 generic/method consistency ... OK
  • checking replacement functions ... OK
  • checking foreign function calls ... OK
  • checking R code for possible problems ... [1s/1s] NOTE guess_txt : <anonymous>: no visible global function definition for   ‘read_table2’ Undefined global functions or variables:   read_table2
  • checking Rd files ... [0s/0s] OK
  • checking Rd metadata ... OK
  • checking Rd cross-references ... OK
  • checking for missing documentation entries ... OK
  • checking for code/documentation mismatches ... OK
  • checking Rd \usage sections ... OK
  • checking Rd contents ... OK
  • checking for unstated dependencies in examples ... OK
  • checking LazyData ... INFO   'LazyData' is specified without a 'data' directory
  • checking examples ... [0s/0s] ERROR Running examples in ‘readit-Ex.R’ failed The error most likely occurred in: > ### Name: readit > ### Title: Read Files of Any Type > ### Aliases: readit > > ### ** Examples > > readit(system.file("examples", "csv.csv", package = "readit")) File guessed to be CSV (system.file("examples", "csv.csv", package = "readit")) Rows: 5 Columns: 5 ── Column specification ──────────────────────────────────────────────────────── Delimiter: "," chr (5): testheader1, testheader2, testheader3, testheader4, testheader5 ℹ Use `spec()` to retrieve the full column specification for this data. ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message. # A tibble: 5 × 5   testheader1 testheader2 testheader3 testheader4 testheader5   <chr> <chr> <chr> <chr> <chr> 1 testdata11 testdata12 testdata13 testdata14 testdata15 2 testdata21 testdata22 testdata23 testdata24 testdata25 3 testdata31 testdata32 testdata33 testdata34 testdata35 4 testdata41 testdata42 testdata43 testdata44 testdata45 5 testdata51 testdata52 testdata53 testdata54 testdata55 > readit(system.file("examples", "tab_sep.txt", package = "readit")) Error in read_table2(x, n_max = n_max) :   could not find function "read_table2" Calls: readit ... is.data.frame -> suppressMessages -> withCallingHandlers Execution halted
  • checking for unstated dependencies in ‘tests’ ... OK
  • checking tests ... [1s/1s] ERROR   Running ‘testthat.R’ [1s/1s] Running the tests in ‘tests/testthat.R’ failed. Complete output:   > library(testthat)   > library(readit)   >   > test_check("readit")   Saving _problems/test_readit-7.R   Saving _problems/test_readit-28.R   Saving _problems/test_readit-69.R   [ FAIL 3 | WARN 0 | SKIP 0 | PASS 12 ]      ══ Failed tests ════════════════════════════════════════════════════════════════   ── Error ('test_readit.R:7:3'): Identical .txts, different delimiters ──────────   Error in `read_table2(x, n_max = n_max)`: could not find function "read_table2"   Backtrace:        ▆     1. └─readit::readit(...) at test_readit.R:7:3     2. └─readit:::guess_txt(.data)     3. └─base::lapply(delims_test, function(y) length(colnames(suppressMessages(suppressWarnings(y(.data))))))     4. └─readit (local) FUN(X[[i]], ...)     5. ├─base::colnames(suppressMessages(suppressWarnings(y(.data))))     6. │ └─base::is.data.frame(x)     7. ├─base::suppressMessages(suppressWarnings(y(.data)))     8. │ └─base::withCallingHandlers(...)     9. ├─base::suppressWarnings(y(.data))    10. │ └─base::withCallingHandlers(...)    11. └─readit (local) y(.data)   ── Error ('test_readit.R:28:3'): Identical files, different formats ────────────   Error in `read_table2(x, n_max = n_max)`: could not find function "read_table2"   Backtrace:        ▆     1. └─readit::readit(system.file("examples", "tab_sep.txt", package = package)) at test_readit.R:28:3     2. └─readit:::guess_txt(.data)     3. └─base::lapply(delims_test, function(y) length(colnames(suppressMessages(suppressWarnings(y(.data))))))     4. └─readit (local) FUN(X[[i]], ...)     5. ├─base::colnames(suppressMessages(suppressWarnings(y(.data))))     6. │ └─base::is.data.frame(x)     7. ├─base::suppressMessages(suppressWarnings(y(.data)))     8. │ └─base::withCallingHandlers(...)     9. ├─base::suppressWarnings(y(.data))    10. │ └─base::withCallingHandlers(...)    11. └─readit (local) y(.data)   ── Error ('test_readit.R:68:3'): Additional arguments are picked up by readit ──   Error in `read_table2(x, n_max = n_max)`: could not find function "read_table2"   Backtrace:        ▆     1. └─readit::readit(...) at test_readit.R:68:3     2. └─readit:::guess_txt(.data)     3. └─base::lapply(delims_test, function(y) length(colnames(suppressMessages(suppressWarnings(y(.data))))))     4. └─readit (local) FUN(X[[i]], ...)     5. ├─base::colnames(suppressMessages(suppressWarnings(y(.data))))     6. │ └─base::is.data.frame(x)     7. ├─base::suppressMessages(suppressWarnings(y(.data)))     8. │ └─base::withCallingHandlers(...)     9. ├─base::suppressWarnings(y(.data))    10. │ └─base::withCallingHandlers(...)    11. └─readit (local) y(.data)      [ FAIL 3 | WARN 0 | SKIP 0 | PASS 12 ]   Error:   ! Test failures.   Execution halted
  • checking PDF version of manual ... [2s/2s] OK
  • DONE Status: 2 ERRORs, 1 NOTE
  • using check arguments '--no-clean-on-error '