Skip to content

Commit 2edeaac

Browse files
authored
Drop revdep check from patch release (#2163)
IMO if you're worried you need to run revdeps it's not a patch release, and the CRAN checks are now automated enough it's not a big deal if we miss something.
1 parent 0592077 commit 2edeaac

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

R/release.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ release_checklist <- function(version, on_cran, target_repo = NULL) {
124124
todo("`devtools::build_readme()`", has_readme),
125125
todo("`devtools::check(remote = TRUE, manual = TRUE)`"),
126126
todo("`devtools::check_win_devel()`"),
127-
release_revdepcheck(on_cran, is_posit_pkg),
127+
if (type != "patch") release_revdepcheck(on_cran, is_posit_pkg),
128128
todo("Update `cran-comments.md`", on_cran),
129129
todo("`git push`"),
130130
todo("Draft blog post", type != "patch"),

tests/testthat/_snaps/release.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
* [ ] `urlchecker::url_check()`
5656
* [ ] `devtools::check(remote = TRUE, manual = TRUE)`
5757
* [ ] `devtools::check_win_devel()`
58-
* [ ] `revdepcheck::revdep_check(num_workers = 4)`
5958
* [ ] Update `cran-comments.md`
6059
* [ ] `git push`
6160

0 commit comments

Comments
 (0)