CRAN Package Check Results for Package wikkitidy

Last updated on 2025-12-07 21:49:58 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.1.14 5.28 52.60 57.88 OK
r-devel-linux-x86_64-debian-gcc 0.1.14 3.21 37.96 41.17 ERROR
r-devel-linux-x86_64-fedora-clang 0.1.14 12.00 73.70 85.70 OK
r-devel-linux-x86_64-fedora-gcc 0.1.14 79.66 OK
r-devel-windows-x86_64 0.1.14 8.00 78.00 86.00 OK
r-patched-linux-x86_64 0.1.14 4.78 47.52 52.30 OK
r-release-linux-x86_64 0.1.14 4.53 46.89 51.42 OK
r-release-macos-arm64 0.1.14 OK
r-release-macos-x86_64 0.1.14 4.00 62.00 66.00 OK
r-release-windows-x86_64 0.1.14 9.00 88.00 97.00 OK
r-oldrel-macos-arm64 0.1.14 OK
r-oldrel-macos-x86_64 0.1.14 4.00 68.00 72.00 OK
r-oldrel-windows-x86_64 0.1.14 9.00 94.00 103.00 OK

Check Details

Version: 0.1.14
Check: examples
Result: ERROR Running examples in ‘wikkitidy-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: wikipedia_rest_apis > ### Title: Build a REST request to one of Wikipedia's specific REST APIs > ### Aliases: wikipedia_rest_apis core_rest_request wikimedia_rest_request > > ### ** Examples > > # Get the html of the 'Earth' article on English Wikipedia > response <- core_rest_request("page", "Earth", "html") %>% + httr2::req_perform() > > response <- wikimedia_rest_request("page", "html", "Earth") %>% + httr2::req_perform() > > # Some REST requests take query parameters. Pass these as named arguments. > # To search German Wikipedia for articles about Goethe > response <- core_rest_request("search/page", q = "Goethe", limit = 2, language = "de") %>% + httr2::req_perform() %>% + httr2::resp_body_json() Error in `httr2::req_perform()`: ! Failed to perform HTTP request. Caused by error in `curl::curl_fetch_memory()`: ! Timeout was reached [de.wikipedia.org]: Connection timed out after 10002 milliseconds Backtrace: ▆ 1. ├─... %>% httr2::resp_body_json() 2. ├─httr2::resp_body_json(.) 3. │ └─httr2:::check_response(resp) 4. │ └─httr2:::is_response(resp) 5. └─httr2::req_perform(.) 6. └─httr2:::handle_resp(req, resp, error_call = error_call) 7. └─rlang::cnd_signal(resp) Execution halted Examples with CPU (user + system) or elapsed time > 5s user system elapsed query_category_members 0.516 0.021 11.722 page_vector_functions 0.146 0.002 17.708 Flavor: r-devel-linux-x86_64-debian-gcc

Version: 0.1.14
Check: tests
Result: ERROR Running ‘testthat.R’ [5s/40s] 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/tests.html > # * https://testthat.r-lib.org/reference/test_package.html#special-files > > library(testthat) > library(wikkitidy) > > test_check("wikkitidy") Saving _problems/test-generator-query-type-17.R Saving _problems/test-list-query-type-7.R > The query you tried was unsuccessful. See the response below. <httr2_response> GET http://127.0.0.1:41013/status/404 Status: 404 Not Found Content-Type: text/plain Body: None [ FAIL 2 | WARN 0 | SKIP 27 | PASS 88 ] ══ Skipped tests (27) ══════════════════════════════════════════════════════════ • On CRAN (27): 'test-get-diff.R:2:3', 'test-get-diff.R:10:3', 'test-get-diff.R:21:3', 'test-get-history-count.R:8:3', 'test-get-page-data.R:2:3', 'test-get-page-data.R:25:3', 'test-get-query-results.R:2:3', 'test-get-query-results.R:11:3', 'test-get-query-results.R:21:3', 'test-get-rest-resource.R:2:3', 'test-get-rest-resource.R:9:3', 'test-get-rest-resource.R:17:3', 'test-get-rest-resource.R:24:3', 'test-get-rest-resource.R:30:3', 'test-prop-query-type.R:60:3', 'test-query-category-members.R:2:3', 'test-query-category-members.R:15:3', 'test-rest-request.R:2:3', 'test-rest-request.R:9:3', 'test-rest-request.R:16:3', 'test-rest-request.R:26:3', 'test-rest-request.R:36:3', 'test-utils.R:8:3', 'test-wiki-action-request.R:15:3', 'test-wiki-action-request.R:22:3', 'test-xtools-page-api.R:2:3', 'test-xtools-page-api.R:18:3' ══ Failed tests ════════════════════════════════════════════════════════════════ ── Error ('test-generator-query-type.R:15:3'): `query_generate_pages` returns data for a known request ── <httr2_failure/httr2_error/rlang_error/error/condition> Error in `httr2::req_perform(.)`: Failed to perform HTTP request. Caused by error in `curl::curl_fetch_memory()`: ! Timeout was reached [en.wikipedia.org]: Connection timed out after 10002 milliseconds Backtrace: ▆ 1. ├─... %>% next_batch() at test-generator-query-type.R:15:3 2. ├─wikkitidy::next_batch(.) 3. ├─wikkitidy:::next_batch.query(.) 4. │ ├─wikkitidy:::perform_query(x, continue = NULL) 5. │ └─wikkitidy:::perform_query.generator(x, continue = NULL) 6. │ └─wikkitidy:::get_result(request, continue, c("query", "pages")) 7. │ └─request %>% httr2::req_url_query(!!!continue) %>% httr2::req_perform() 8. └─httr2::req_perform(.) 9. └─httr2:::handle_resp(req, resp, error_call = error_call) 10. └─rlang::cnd_signal(resp) ── Error ('test-list-query-type.R:2:3'): `query_list_pages` returns data for a known request ── <httr2_failure/httr2_error/rlang_error/error/condition> Error in `httr2::req_perform(.)`: Failed to perform HTTP request. Caused by error in `curl::curl_fetch_memory()`: ! Timeout was reached [en.wikipedia.org]: Connection timed out after 10002 milliseconds Backtrace: ▆ 1. ├─... %>% next_batch() at test-list-query-type.R:2:3 2. ├─wikkitidy::next_batch(.) 3. ├─wikkitidy:::next_batch.query(.) 4. │ ├─wikkitidy:::perform_query(x, continue = NULL) 5. │ └─wikkitidy:::perform_query.list(x, continue = NULL) 6. │ └─wikkitidy:::get_result(request, continue, c("query")) 7. │ └─request %>% httr2::req_url_query(!!!continue) %>% httr2::req_perform() 8. └─httr2::req_perform(.) 9. └─httr2:::handle_resp(req, resp, error_call = error_call) 10. └─rlang::cnd_signal(resp) [ FAIL 2 | WARN 0 | SKIP 27 | PASS 88 ] Error: ! Test failures. Execution halted Flavor: r-devel-linux-x86_64-debian-gcc