Skip to content

Commit

Permalink
disable plausibleDuringLife and plausibleTemportalAfter
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximMoinat committed Dec 21, 2023
1 parent a525dd7 commit 1807cce
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions R/executeDqChecks.R
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,10 @@ executeDqChecks <- function(connectionDetails,

if (length(checkNames) > 0) {
checkDescriptionsDf <- checkDescriptionsDf[checkDescriptionsDf$checkName %in% checkNames, ]
} else {
# No checkNames specified. Do not run plausibleDuringLife and plausibleTemportalAfter as these are superseded three new checks
disabledChecks <- c("plausibleDuringLife", "plausibleTemportalAfter")
checkDescriptionsDf <- checkDescriptionsDf[!(checkDescriptionsDf$checkName %in% disabledChecks), ]
}

if (nrow(checkDescriptionsDf) == 0) {
Expand Down

0 comments on commit 1807cce

Please sign in to comment.