Skip to content

Commit 1c8e493

Browse files
committed
Force na.strings="" in run-test-list script
Otherwise, they are read as literal "", which breaks a bunch of things downstream.
1 parent a14bd06 commit 1c8e493

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

inst/run-test-list.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ configure_inputs <- function(met, model_name, ...) {
3737
input
3838
}
3939

40-
test_list <- read.csv("inst/integration-test-list.csv", comment.char = "#") %>%
40+
test_list <- read.csv("inst/integration-test-list.csv", comment.char = "#",
41+
na.strings = "") %>%
4142
as_tibble() %>%
4243
# Only test models that are available on the target machine
4344
inner_join(models, c("model_name", "revision")) %>%

0 commit comments

Comments
 (0)