Skip to content

Commit

Permalink
Test #549
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Oct 17, 2018
1 parent c09c4c5 commit b296917
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/testthat/test-always-skipped.R
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,19 @@ test_with_dir("drake_debug()", {
}
})

test_with_dir("clustermq error messages get back to master", {
plan <- drake_plan(a = stop(123))
options(clustermq.scheduler = "multicore")
for (caching in c("worker", "master")){
expect_error(
make(
plan,
parallelism = "clustermq",
caching = "worker"
),
regexp = "123"
)
}
})

}

0 comments on commit b296917

Please sign in to comment.