Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CRAN repo to latest, fix one test using removed CRAN packages, ignore another #113

Merged
merged 15 commits into from
Jun 27, 2024
Merged
2 changes: 1 addition & 1 deletion R/tests/testthat/helper-Setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ testthatDir <- getwd()
R_Root <- file.path(testthatDir, "../..")
scriptDirectory <- file.path(testthatDir, "scripts")

options(repos = c(CRAN="https://cran.microsoft.com/snapshot/2022-07-06"))
options(repos = c(CRAN="https://cloud.r-project.org/"))
cat("INFO: repos = ", getOption("repos"), sep="\n")

# Compute context specifications
Expand Down
2 changes: 1 addition & 1 deletion R/tests/testthat/test.sqlPackage.basic.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test_that( "successfull install and remove of package with special char in name
#
scope <- if(!helper_isServerLinux()) "public" else "private"

packageName <- c("assertive.base")
packageName <- c("abc.data")
connectionStringDBO <- helper_getSetting("connectionStringDBO")

tryCatch({
Expand Down
1 change: 1 addition & 0 deletions R/tests/testthat/test.sqlPackage.dependencies.R
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ test_that( "Installing a package that is already in use",
#
test_that( "Binary Package install with LinkingTo dependency",
{
skip('iptools no longer on CRAN, FIX TODO: https://github.com/microsoft/sqlmlutils/issues/114 ')
connectionStringAirlineUserdbowner <- helper_getSetting("connectionStringAirlineUserdbowner")
scope <- "private"

Expand Down
Loading