From e7a0f07f7184b7ba65069b8a6415f52d2dbb3622 Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Mon, 20 May 2024 10:25:42 -0400 Subject: [PATCH] tmp: display output for debugging. Let fn set retry value --- .github/workflows/apps-test-os.yml | 1 - R/test-in-local.R | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/apps-test-os.yml b/.github/workflows/apps-test-os.yml index cc6664573b..a89ab890cf 100644 --- a/.github/workflows/apps-test-os.yml +++ b/.github/workflows/apps-test-os.yml @@ -166,7 +166,6 @@ jobs: } test_output <- shinycoreci::test_in_local( apps = apps, - retries = 1, assert = FALSE ) shinycoreci::save_test_results( diff --git a/R/test-in-local.R b/R/test-in-local.R index 5094aa268e..a6a23f6006 100644 --- a/R/test-in-local.R +++ b/R/test-in-local.R @@ -133,7 +133,7 @@ test_in_local <- function( } # (break statements at beginning and end of while loop) - show_output <- FALSE + show_output <- TRUE # temp enable output for debugging while (TRUE) { # get all positions that should be tested to_test_positions <- which(test_dt$status %in% c(ci_status$fail, ci_status$default))