Skip to content

Commit

Permalink
* .github/workflows/R-CMD-check.yaml: Coverage of dontrun and donttest.
Browse files Browse the repository at this point in the history
  • Loading branch information
MLopez-Ibanez committed Oct 5, 2023
1 parent 7f6df7b commit bc98c6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
env:
NOT_CRAN: false
run: |
covr::codecov(type="all", quiet=FALSE)
covr::codecov(type="all", quiet=FALSE, commentDonttest = FALSE, commentDontrun = FALSE)
shell: Rscript {0}

pkgdown:
Expand Down
4 changes: 2 additions & 2 deletions R/eafplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ eafplot <- function(x, ...) UseMethod("eafplot")
#' tabucol$alg <- tabucol$alg[drop=TRUE]
#' eafplot(time + best ~ run, data = tabucol, subset = tabucol$inst=="DSJC500.5")
#'
#' \dontrun{# These take time
#' \donttest{# These take time
#' eafplot(time + best ~ run | inst, groups=alg, data=gcp2x2)
#' eafplot(time + best ~ run | inst, groups=alg, data=gcp2x2,
#' percentiles=c(0,50,100), cex.axis = 0.8, lty = c(2,1,2), lwd = c(2,2,2),
Expand All @@ -97,7 +97,7 @@ eafplot <- function(x, ...) UseMethod("eafplot")
#' }
#'
#' ## Using extra.points
#' \dontrun{
#' \donttest{
#' data(HybridGA)
#' data(SPEA2relativeVanzyl)
#' eafplot(SPEA2relativeVanzyl, percentiles = c(25, 50, 75),
Expand Down

0 comments on commit bc98c6f

Please sign in to comment.