Skip to content

Commit 88fcb6d

Browse files
committed
Skip manifest in exact table comparison
1 parent c932c45 commit 88fcb6d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

dev/compare_tables.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ if (!dir.exists(generated_dir)) {
1919
}
2020

2121
list_csv_files <- function(path) {
22-
sort(list.files(path, pattern = "\\.csv$", full.names = FALSE))
22+
files <- sort(list.files(path, pattern = "\\.csv$", full.names = FALSE))
23+
setdiff(files, "output_manifest.csv")
2324
}
2425

2526
reference_files <- list_csv_files(reference_dir)

0 commit comments

Comments
 (0)