build: keep stray Rplots.pdf out of the build tarball#107
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev #107 +/- ##
=======================================
Coverage 87.15% 87.15%
=======================================
Files 46 46
Lines 4016 4016
=======================================
Hits 3500 3500
Misses 516 516 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
This PR updates the package build ignore rules to prevent accidental inclusion of a locally generated Rplots.pdf artifact in R CMD build tarballs, keeping build outputs stable and appropriately sized.
Changes:
- Add an
.Rbuildignorerule forRplots\.pdf$so example/test plotting artifacts aren’t bundled into the source tarball. - Document the rationale with inline comments (noting it’s already covered by
.gitignore).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
ehrlinger
added a commit
that referenced
this pull request
May 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add
Rplots\.pdf$to.Rbuildignoreso a strayRplots.pdfnever gets bundled into the build tarball.Why
devtools::check/run_examplesexecute the\donttestgg_*examples, which end inplot(...)and auto-print to the default graphics device, leavingtests/testthat/Rplots.pdf. It's already in.gitignore(never committed), butR CMD builduses.Rbuildignore— which didn't exclude it — so a local build picked up the ~6.9 MB stray and inflated the tarball. No test creates it (verified across the suite under both default andNOT_CRAN=true); it's purely an example-execution artifact.This is preventative build hygiene — no package code or behaviour change.
🤖 Generated with Claude Code