Skip to content

Commit

Permalink
turn off partial matching of args
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Jul 4, 2024
1 parent 59d3724 commit 761860c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
^CRAN-RELEASE$
^CRAN-SUBMISSION$
^LICENSE\.md$
^man-roxygen$
^Makefile$
^Meta$
^NEWS$
Expand Down Expand Up @@ -43,6 +42,7 @@
^doc$
^docs$
^gitsum$
^man-roxygen$
^paper.*$
^pkgdown$
^revdep$
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/check-all-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
run: |
options(
crayon.enabled = TRUE,
warn = 2L,
warnPartialMatchArgs = TRUE,
warnPartialMatchAttr = TRUE,
warnPartialMatchDollar = TRUE
# warnPartialMatchArgs = TRUE,
# warnPartialMatchAttr = TRUE,
# warnPartialMatchDollar = TRUE,
warn = 2L
)
devtools::run_examples(run_dontrun = TRUE, run_donttest = TRUE, document = FALSE)
shell: Rscript {0}
8 changes: 4 additions & 4 deletions .github/workflows/check-readme.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ jobs:
run: |
options(
crayon.enabled = TRUE,
warn = 2L,
warnPartialMatchArgs = TRUE,
warnPartialMatchAttr = TRUE,
warnPartialMatchDollar = TRUE
# warnPartialMatchArgs = TRUE,
# warnPartialMatchAttr = TRUE,
# warnPartialMatchDollar = TRUE,
warn = 2L
)
rmarkdown::render("README.Rmd")
shell: Rscript {0}
8 changes: 4 additions & 4 deletions .github/workflows/check-vignette-warnings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
run: |
options(
crayon.enabled = TRUE,
warn = 2L,
warnPartialMatchArgs = TRUE,
warnPartialMatchAttr = TRUE,
warnPartialMatchDollar = TRUE
# warnPartialMatchArgs = TRUE,
# warnPartialMatchAttr = TRUE,
# warnPartialMatchDollar = TRUE,
warn = 2L
)
vignettes <- fs::dir_ls("vignettes/", glob = "*.Rmd", recurse = TRUE)
purrr::walk(vignettes, rmarkdown::render)
Expand Down

0 comments on commit 761860c

Please sign in to comment.