Last updated on 2025-02-02 05:48:24 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.3.0 | 6.26 | 56.18 | 62.44 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.3.0 | 4.77 | 43.17 | 47.94 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.3.0 | 98.92 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.3.0 | 112.63 | OK | |||
r-devel-windows-x86_64 | 0.3.0 | 9.00 | 79.00 | 88.00 | OK | |
r-patched-linux-x86_64 | 0.3.0 | 6.02 | 51.51 | 57.53 | OK | |
r-release-linux-x86_64 | 0.3.0 | 5.35 | 51.07 | 56.42 | OK | |
r-release-macos-arm64 | 0.3.0 | 45.00 | ERROR | |||
r-release-macos-x86_64 | 0.3.0 | 92.00 | ERROR | |||
r-release-windows-x86_64 | 0.3.0 | 8.00 | 78.00 | 86.00 | OK | |
r-oldrel-macos-arm64 | 0.3.0 | 54.00 | ERROR | |||
r-oldrel-macos-x86_64 | 0.3.0 | 125.00 | ERROR | |||
r-oldrel-windows-x86_64 | 0.3.0 | 11.00 | 81.00 | 92.00 | OK |
Version: 0.3.0
Check: examples
Result: ERROR
Running examples in ‘froggeR-Ex.R’ failed
The error most likely occurred in:
> ### Name: quarto_project
> ### Title: Create a Custom 'Quarto' Project
> ### Aliases: quarto_project
>
> ### ** Examples
>
> if (quarto::quarto_version() >= "1.4") {
+ # Create a temporary directory for testing
+ tmp_dir <- tempdir()
+
+ # Create the Quarto project with custom YAML & associated files
+ quarto_project("frogs", path = tempdir(), custom_yaml = TRUE)
+
+ # Confirms files were created (optional, for user confirmation)
+ file.exists(file.path(tmp_dir, "frogs.rproj")) # Rproj file
+ file.exists(file.path(tmp_dir, "frog.qmd")) # Quarto doc
+ file.exists(file.path(tmp_dir, "_quarto.yml")) # project YAML file
+
+ # Create a new Quarto project with standard Quarto YAML
+ # quarto_project('frogs_standard', path = tempdir(), custom_yaml = FALSE)
+
+ # Clean up: Remove the created temp directory and all files
+ unlink(list.files(tempdir(), full.names = TRUE), recursive = TRUE)
+ }
Error in `find_quarto()`:
! Quarto command-line tools path not found!
Please make sure you have installed and added Quarto to your PATH or set the
QUARTO_PATH environment variable.
Backtrace:
▆
1. └─quarto::quarto_version()
2. └─quarto:::find_quarto()
3. └─cli::cli_abort(quarto_not_found_msg)
4. └─rlang::abort(...)
Execution halted
Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.