Last updated on 2026-07-09 19:56:24 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.1.1 | 10.14 | 119.00 | 129.14 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.1.1 | 7.53 | 83.59 | 91.12 | OK | |
| r-devel-linux-x86_64-fedora-clang | 1.1.1 | 11.00 | 118.50 | 129.50 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 1.1.1 | 18.00 | 219.12 | 237.12 | OK | |
| r-devel-windows-x86_64 | 1.1.1 | 12.00 | 121.00 | 133.00 | OK | |
| r-patched-linux-x86_64 | 1.1.1 | 10.97 | 107.16 | 118.13 | OK | |
| r-release-linux-x86_64 | 1.1.1 | 9.83 | 105.93 | 115.76 | OK | |
| r-release-macos-arm64 | 1.1.1 | 3.00 | 32.00 | 35.00 | OK | |
| r-release-macos-x86_64 | 1.1.1 | 8.00 | 143.00 | 151.00 | OK | |
| r-release-windows-x86_64 | 1.1.1 | 12.00 | 120.00 | 132.00 | OK | |
| r-oldrel-macos-arm64 | 1.1.1 | OK | ||||
| r-oldrel-macos-x86_64 | 1.1.1 | 6.00 | 211.00 | 217.00 | OK | |
| r-oldrel-windows-x86_64 | 1.1.1 | 17.00 | 155.00 | 172.00 | ERROR |
Version: 1.1.1
Check: tests
Result: ERROR
Running 'testthat.R' [16s]
Running the tests in 'tests/testthat.R' failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
> # * https://testthat.r-lib.org/articles/special-files.html
>
> library(testthat)
> library(qtkit)
> library(httptest)
> library(chromote)
>
> # Function to delete Crashpad directories
> cleanup_crashpad <- function() {
+ crashpad_dirs <- dir(tempdir(), full.names = TRUE, pattern = "Crashpad")
+ if (length(crashpad_dirs) > 0) {
+ unlink(crashpad_dirs, recursive = TRUE)
+ }
+ }
>
> testthat::setup(cleanup_crashpad)
> testthat::teardown(cleanup_crashpad)
>
> # Function to check if Chromium is
> # available and can be initialized
> is_chromium_available <- function() {
+ tryCatch({
+ chromote::Chromote$new()
+ TRUE
+ }, error = function(e) {
+ FALSE
+ })
+ }
>
> # Set the timeout for chromote (Windows only issue)
> # https://github.com/rstudio/chromote/issues/114#issuecomment-1675406196
> options(chromote.timeout = 60)
>
> test_check("qtkit")
Are you aware of the permissions to use this data?
Are you aware of the permissions to use this data?
Please review the documentation and try again.
Attaching package: 'dplyr'
The following objects are masked from 'package:stats':
filter, lag
The following objects are masked from 'package:base':
intersect, setdiff, setequal, union
Variable name: x
Q1: 2.25 Q3: 4.75 IQR: 2.5
Upper fence: 8.5 Lower fence: -1.5
Number of outliers: 1
Variable name: x
Q1: 2 Q3: 4 IQR: 2
Upper fence: 7 Lower fence: -1
Number of outliers: 0
Creating target data directory
Downloading data...
trying URL 'https://raw.githubusercontent.com/qtalr/qtkit/main/inst/extdata/test_data.zip'
Saving _problems/test-get_archive_data-16.R
Data already exists
Creating target data directory
Downloading data...
trying URL 'https://raw.githubusercontent.com/qtalr/qtkit/main/inst/extdata/test_data.zip'
Content type 'application/zip' length 1966 bytes
==================================================
downloaded 1966 bytes
Data downloaded!
Saving 7 x 7 in image
Saving 7 x 7 in image
Saving 7 x 7 in image
Saving 7 x 7 in image
Saving 7 x 7 in image
Saving 7 x 7 in image
Directory created: D:\temp\2026_07_08_01_50_00_3490\RtmpGykqAA/new_dir
Saving 7 x 7 in image
Saving 7 x 7 in image
Saving 7 x 7 in image
Attaching package: 'kableExtra'
The following object is masked from 'package:dplyr':
group_rows
Google Chrome was not found. Try setting the `CHROMOTE_CHROME` environment variable to the executable of a Chromium-based browser, such as Google Chrome, Chromium or Brave.
Directory created: D:\temp\2026_07_08_01_50_00_3490\RtmpGykqAA/non_existent_dir
[ FAIL 1 | WARN 1 | SKIP 2 | PASS 107 ]
══ Skipped tests (2) ═══════════════════════════════════════════════════════════
• Chromium not available (1): 'test-write_kbl.R:11:3'
• On CRAN (1): 'test-get_gutenberg_data.R:5:3'
══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-get_archive_data.R:16:3'): do, when the target directory does not exist ──
Error in `utils::download.file(url = url, destfile = temp)`: cannot open URL 'https://raw.githubusercontent.com/qtalr/qtkit/main/inst/extdata/test_data.zip'
Backtrace:
▆
1. └─qtkit::get_archive_data(url = url, target_dir = target_dir, confirmed = TRUE) at test-get_archive_data.R:16:3
2. └─qtkit:::download_and_decompress(url, target_dir, ext)
3. └─utils::download.file(url = url, destfile = temp)
[ FAIL 1 | WARN 1 | SKIP 2 | PASS 107 ]
Error:
! Test failures.
Execution halted
Flavor: r-oldrel-windows-x86_64