Skip to content

Commit

Permalink
Merge pull request #45 from Boehringer-Ingelheim/44-testing-stage-doe…
Browse files Browse the repository at this point in the history
…s-not-detect-errors-as-opposed-to-expectation-failures

covers errors in testing pipeline
  • Loading branch information
zsigmas authored Nov 29, 2024
2 parents 1daaac9 + a06c3ec commit f4a9273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test_qc_pkg.R
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ test_results <- tibble::as_tibble(
)
)

success[["test"]] <- sum(test_results[["failed"]]) == 0
success[["test"]] <- (sum(test_results[["failed"]]) == 0) && !(any(test_results[["error"]]))

# Copy _snaps folder so it can be archived later for test debugging
# Empty if no errors are found
Expand Down

0 comments on commit f4a9273

Please sign in to comment.