Skip to content

Commit

Permalink
NEWS: refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikBengtsson committed Jul 3, 2024
1 parent 5d8a159 commit bc00336
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/covr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
## https://app.codecov.io/gh/<org>/<repo>/settings
## 2. Set 'CODECOV_TOKEN' in GitHub Secrets:
## https://github.com/<org>/<repo>/settings/environments/
coverage <- covr::package_coverage()
coverage <- covr::package_coverage(quiet = FALSE)
print(coverage)
covr::codecov(coverage = coverage, token="${{secrets.CODECOV_TOKEN}}")
shell: Rscript {0}
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: future.mirai
Version: 0.2.1.9000
Version: 0.2.1.9002
Depends:
future
Imports:
Expand Down
5 changes: 4 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Version (development version)

* ...
## Miscellaneous

* Internal updates for **mirai** (>= 1.1.0), e.g. `mirai::daemons()`
argument `resilience` is being removed.


# Version 0.2.1

Expand Down
2 changes: 2 additions & 0 deletions tests/mirai_cluster,worker-termination.R
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ if (.Platform$OS.type != "windows") {
## cf. https://github.com/HenrikBengtsson/future.mirai/issues/7
nworkers <- tryCatch(nbrOfWorkers(), error = identity)
print(nworkers)

## If a valid result, then validate the value
if (!inherits(nworkers, "error")) {
message("Number of workers: ", nworkers)
message("Expected number of workers: ", all - 1L)
Expand Down

0 comments on commit bc00336

Please sign in to comment.