Skip to content

Commit

Permalink
cleanup for CRAN release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyrcoyle committed Oct 19, 2022
1 parent bf7ca82 commit 33570a3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.Rproj.user
.Rhistory
.RData
.rdata
inst/doc

doc
Expand Down
3 changes: 1 addition & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ Imports:
rstackdeque,
rlang,
data.table,
assertthat,
visNetwork,
uuid,
BBmisc,
Expand All @@ -40,5 +39,5 @@ BugReports: https://github.com/tlverse/delayed/issues
Encoding: UTF-8
LazyData: true
VignetteBuilder: knitr
RoxygenNote: 7.1.1.9001
RoxygenNote: 7.2.0
Roxygen: list(markdown = TRUE, r6 = FALSE)
12 changes: 6 additions & 6 deletions tests/testthat/test_timeout.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ make_adder_list <- function() {
# big_adder$compute()
# plot(big_adder)


big_adder <- make_adder_list()
big_adder$timeout <- 1
result_sequential <- big_adder$compute(SequentialJob)
errors <- sapply(result_sequential, inherits, "try-error")
expect_equal(sum(errors), 3)
#
# big_adder <- make_adder_list()
# big_adder$timeout <- 1
# result_sequential <- big_adder$compute(SequentialJob)
# errors <- sapply(result_sequential, inherits, "try-error")
# expect_equal(sum(errors), 3)

# plan(multicore, workers = 2)
# big_adder <- make_adder_list()
Expand Down

0 comments on commit 33570a3

Please sign in to comment.