Skip to content

Commit

Permalink
autocommit
Browse files Browse the repository at this point in the history
  • Loading branch information
ablack3 committed Jan 16, 2024
1 parent b14ce0f commit 6afe856
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/generateCohortSet.R
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ read_cohort_set <- function(path) {

# snakecase name can be used for column names or filenames
cohortsToCreate <- cohortsToCreate %>%
dplyr::mutate(cohort_name_snakecase = snakecase::to_snake_case(cohort_name)) %>%
dplyr::mutate(cohort_name_snakecase = snakecase::to_snake_case(.data$cohort_name)) %>%
dplyr::select("cohort_definition_id", "cohort_name", "cohort", "json", "cohort_name_snakecase")

class(cohortsToCreate) <- c("CohortSet", class(cohortsToCreate))
Expand Down
4 changes: 2 additions & 2 deletions tests/testthat/setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -165,15 +165,15 @@ ciTestDbs <- c("duckdb", "postgres", "redshift", "sqlserver", "snowflake")
if (Sys.getenv("CI_TEST_DB") == "") {

dbToTest <- c(
# "duckdb"
"duckdb"
# ,
# "postgres"
# ,
# "redshift"
# ,
# "sqlserver"
# ,
"snowflake"
#"snowflake"
# ,
# "spark"
)
Expand Down

0 comments on commit 6afe856

Please sign in to comment.