Skip to content

Commit

Permalink
disable webapi checks
Browse files Browse the repository at this point in the history
  • Loading branch information
khufkens committed Feb 23, 2024
1 parent 99a1c7d commit a8761a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion R/wf_request_batch.R
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ wf_request_batch <- function(
queue[[1]],
user = user[1],
time_out = time_out[1],
path = path[1], transfer = FALSE
path = path[1],
transfer = FALSE
)
queue <- queue[-1]
user <- user[-1]
Expand Down
4 changes: 2 additions & 2 deletions tests/testthat/test_cds.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ if(!("ecmwfr" %in% keyring::keyring_list()$keyring)){
keyring::keyring_create("ecmwfr", password = "test")
}

login_check <- FALSE

# check if on github
ON_GIT <- ifelse(
Sys.getenv("GITHUB_ACTION") == "",
Expand Down Expand Up @@ -89,6 +87,8 @@ test_that("cds datasets returns data.frame or list", {
simplify = FALSE), "list"))
})

login_check <- FALSE

# Testing the cds request function
test_that("cds request", {
skip_on_cran()
Expand Down

0 comments on commit a8761a5

Please sign in to comment.