{"id":21701572,"url":"https://github.com/kyleam/covr-r44-issues","last_synced_at":"2025-09-09T06:54:43.624Z","repository":{"id":262914297,"uuid":"888502001","full_name":"kyleam/covr-r44-issues","owner":"kyleam","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-15T17:10:55.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-25T15:11:58.367Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kyleam.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-14T14:07:01.000Z","updated_at":"2024-11-15T17:10:59.000Z","dependencies_parsed_at":"2024-11-15T01:39:48.842Z","dependency_job_id":null,"html_url":"https://github.com/kyleam/covr-r44-issues","commit_stats":null,"previous_names":["kyleam/covr-r44-issues"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyleam%2Fcovr-r44-issues","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyleam%2Fcovr-r44-issues/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyleam%2Fcovr-r44-issues/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyleam%2Fcovr-r44-issues/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kyleam","download_url":"https://codeload.github.com/kyleam/covr-r44-issues/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244647092,"owners_count":20487010,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-25T20:24:19.191Z","updated_at":"2025-03-20T16:19:34.341Z","avatar_url":"https://github.com/kyleam.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":" * [Overview](#overview)\n * [Slowdown](#slowdown)\n   * [data.table](#datatable)\n   * [diffobj](#diffobj)\n   * [R.utils](#rutils)\n * [Exclusions error](#exclusions-error)\n   * [data.table](#datatable-1)\n   * [diffobj](#diffobj-1)\n   * [nanotime](#nanotime)\n\nOverview\n--------\n\nThis repository demonstrates two issues with covr and R 4.4:\n\n * calculating coverage for R.utils shows a substantial slowdown\n\n * calculating coverage for nanotime triggers an error (\"'from' must\n   be a finite number\") when applying exclusions\n\nThe [patches/](/patches) subdirectory contains the following patches:\n\n * [drop-outer-gpd.diff][f1]: the simplest change that resolves the\n    above issues.\n\n * [drop-outer-gpd-no-simplify.diff][f2]: a fix for a currently\n    unreachable bug in covr's `split_on_line_directives` helper (see\n    the `drop-outer` case for the pagenum package).\n\n * [proposed-v1][f3]: the actual fix proposed upstream ([r-lib/covr#588][pr])\n\n\n[f1]: /patches/drop-outer-gpd.diff\n[f2]: /patches/drop-outer-gpd-no-simplify.diff\n[f3]: /patches/proposed-v1.diff\n[pr]: https://github.com/r-lib/covr/pull/588\n\n\nSlowdown\n--------\n\n### data.table\n\n**R 4.3 run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/datatable-r43.stderr#L97\n\n**R 4.4 run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/datatable-r44.stderr#L21\n\n**R 4.4 patched run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/datatable-r44-drop-outer.stderr#L97\n\n### diffobj\n\n**R 4.3 run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/diffobj-r43.stderr#L45\n\n**R 4.4 run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/diffobj-r44.stderr#L21\n\n**R 4.4 patched run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/diffobj-r44-drop-outer.stderr#L45\n\n### R.utils\n\n**R 4.3 run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/rutils-r43.stderr#L161\n\n**R 4.4 run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/rutils-r44.stderr#L161\n\n**R 4.4 patched run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/rutils-r44-drop-outer.stderr#L161\n\n\nExclusions error\n----------------\n\n### data.table\n\n**R 4.3 run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/datatable-r43.stderr#L15-L16\n\n**R 4.4 run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/datatable-r44.stderr#L15-L20\n\n**R 4.4 patched run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/datatable-r44-drop-outer.stderr#L15-L16\n\n### diffobj\n\n**R 4.3 run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/diffobj-r43.stderr#L15-L16\n\n**R 4.4 run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/diffobj-r44.stderr#L15-L20\n\n**R 4.4 patched run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/diffobj-r44-drop-outer.stderr#L15-L16\n\n### nanotime\n\n**R 4.3 run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/nanotime-r43.stderr#L17-L18\n\n**R 4.4 run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/nanotime-r44.stderr#L17-L22\n\n**R 4.4 patched run**\n\nhttps://github.com/kyleam/covr-r44-issues/blob/fab8e7bc7fd9705f0671ebf0bf23eecb83780be5/output/nanotime-r44-drop-outer.stderr#L17-L18\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkyleam%2Fcovr-r44-issues","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkyleam%2Fcovr-r44-issues","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkyleam%2Fcovr-r44-issues/lists"}