We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33e0aa0 commit 4d6c928Copy full SHA for 4d6c928
R/test-in-local.R
@@ -255,6 +255,11 @@ assert_test_output <- function(output) {
255
display_message("App test failures", ci_status$fail, include_result = TRUE)
256
display_message("Apps which could NOT be tested", ci_status$no_install, include_result = TRUE)
257
258
+ # Cover case of complete install failure for all apps
259
+ if (!any(test_dt$status %in% c(ci_status$pass, ci_status$fail))) {
260
+ stop("No test results found!")
261
+ }
262
+
263
if (any(test_dt$status %in% ci_status$fail)) {
264
stop(
265
concat_info("Failures detected in:", c(ci_status$fail), include_result = FALSE)
0 commit comments