Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
* `test_coverage_active_file()` now reports if any tests failed and does
a better job of executing snapshot comparisons.

* `check_built()` no longer prints check env variables - now handled by `rcmdcheck::rcmdcheck()` directly as of r-lib/rcmdcheck#237 (#2621)

# devtools 2.4.5

* `check(cleanup =)` was deprecated in devtools v1.11.0 (2016-04-12) and was
Expand Down
4 changes: 0 additions & 4 deletions R/check.R
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,6 @@ check_built <- function(path = NULL, cran = TRUE,
}

env_vars <- check_env_vars(cran, remote, incoming, force_suggests, env_vars)
if (!quiet) {
cat_rule("Checking", col = "cyan", line = 2)
show_env_vars(env_vars)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See here I'd explicitly filter out _R_CHECK_ env vars since we know that rcmdcheck will handle them.

}

withr::with_envvar(env_vars, action = "replace", {
rcmdcheck::rcmdcheck(path,
Expand Down
Loading