Skip to content

Commit

Permalink
covers errors in testing pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
zsigmas committed Nov 28, 2024
1 parent 1daaac9 commit a06c3ec
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 a06c3ec

Please sign in to comment.