- using R Under development (unstable) (2025-11-14 r89021)
- using platform: x86_64-pc-linux-gnu
- R was compiled by
gcc (GCC) 15.1.1 20250521 (Red Hat 15.1.1-2)
GNU Fortran (GCC) 15.1.1 20250521 (Red Hat 15.1.1-2)
- running under: Fedora Linux 42 (Workstation Edition)
- using session charset: UTF-8
- using option ‘--no-stop-on-test-error’
- checking for file ‘filibustr/DESCRIPTION’ ... OK
- this is package ‘filibustr’ version ‘0.5.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 ‘filibustr’ can be installed ... [5s/11s] OK
See the install log for details.
- checking package directory ... OK
- checking ‘build’ 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 ... OK
- checking whether the package can be loaded with stated dependencies ... OK
- checking whether the package can be unloaded cleanly ... OK
- checking whether the namespace can be loaded with stated dependencies ... OK
- checking whether the namespace can be unloaded cleanly ... OK
- checking loading without being on the library search path ... OK
- checking use of S3 registration ... 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 ... [6s/17s] OK
- checking Rd files ... OK
- checking Rd metadata ... OK
- checking Rd line widths ... 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 installed files from ‘inst/doc’ ... OK
- checking files in ‘vignettes’ ... OK
- checking examples ... [9s/30s] ERROR
Running examples in ‘filibustr-Ex.R’ failed
The error most likely occurred in:
> ### Name: read_html_table
> ### Title: Scrape an online HTML table
> ### Aliases: read_html_table
>
> ### ** Examples
>
> ## Don't show:
> if (!is.null(curl::nslookup("voteview.com", error = FALSE))) withAutoprint({ # examplesIf
+ ## End(Don't show)
+ # The table used in `get_senate_cloture_votes()`
+ # NOTE: `get_senate_cloture_votes()` performs some cleaning on this table
+ read_html_table(url = "https://www.senate.gov/legislative/cloture/clotureCounts.htm",
+ css = ".cloturecount")
+ ## Don't show:
+ }) # examplesIf
> read_html_table(url = "https://www.senate.gov/legislative/cloture/clotureCounts.htm",
+ css = ".cloturecount")
# A tibble: 56 × 5
Congress Years `Motions Filed` `Votes on Cloture` `Cloture Invoked`
<chr> <chr> <chr> <chr> <chr>
1 119 2025-2026 193 194 167
2 118 2023-2024 266 241 227
3 117 2021-2022 336 289 270
4 116 2019-2020 328 298 270
5 115 2017-2018 201 168 157
6 114 2015-2016 128 123 60
7 113 2013-2014 252 218 187
8 112 2011-2012 115 73 41
9 111 2009-2010 137 91 63
10 110 2007-2008 139 112 61
# ℹ 46 more rows
> ## End(Don't show)
> ## Don't show:
> if (!is.null(curl::nslookup("www.baseball-reference.com", error = FALSE))) withAutoprint({ # examplesIf
+ ## End(Don't show)
+ # A table from Baseball Reference
+ read_html_table(url = "https://www.baseball-reference.com/friv/rules-changes-stats.shtml",
+ css = "#time_of_game")
+ ## Don't show:
+ }) # examplesIf
> read_html_table(url = "https://www.baseball-reference.com/friv/rules-changes-stats.shtml",
+ css = "#time_of_game")
Error in open.connection(x, "rb") : cannot open the connection
Calls: withAutoprint ... <Anonymous> -> <Anonymous> -> <Anonymous> -> read_html.default
Execution halted
- checking for unstated dependencies in ‘tests’ ... OK
- checking tests ... [10s/21s] OK
Running ‘testthat.R’ [9s/20s]
- checking for unstated dependencies in vignettes ... OK
- checking package vignettes ... OK
- checking re-building of vignette outputs ... [23s/52s] OK
- checking PDF version of manual ... [7s/16s] OK
- checking HTML version of manual ... OK
- checking for non-standard things in the check directory ... OK
- checking for detritus in the temp directory ... OK
- DONE
Status: 1 ERROR