fix bug in setup

This commit is contained in:
Adam Black 2021-08-19 22:31:06 -04:00
parent cedf334df6
commit d6d213c7f6
1 changed files with 4 additions and 1 deletions

View File

@ -6,7 +6,10 @@ if(!dir.exists(driverPath)) dir.create(driverPath)
if(Sys.getenv("LOCAL_TEST") != "TRUE") {
cat("downloading drivers")
downloadJdbcDrivers("all", pathToDriver = driverPath)
downloadJdbcDrivers("redshift", pathToDriver = driverPath)
downloadJdbcDrivers("postgresql", pathToDriver = driverPath)
downloadJdbcDrivers("oracle", pathToDriver = driverPath)
downloadJdbcDrivers("sql server", pathToDriver = driverPath)
}
# Helper functions used in tests -----------------------------------------------