1
1
drake_context(" clustermq" )
2
2
3
3
test_with_dir(" clustermq parallelism for CRAN" , {
4
- skip_if_not_installed(" clustermq" )
4
+ skip_if_not_installed(" clustermq" , minimum_version = " 0.9.1 " )
5
5
skip_on_os(" windows" )
6
6
options(clustermq.scheduler = " multicore" )
7
7
plan <- drake_plan(x = {
@@ -22,7 +22,7 @@ test_with_dir("clustermq parallelism for CRAN", {
22
22
23
23
test_with_dir(" clustermq parallelism" , {
24
24
skip_on_cran()
25
- skip_if_not_installed(" clustermq" )
25
+ skip_if_not_installed(" clustermq" , minimum_version = " 0.9.1 " )
26
26
skip_on_os(" windows" )
27
27
if (" package:clustermq" %in% search()) {
28
28
detach(" package:clustermq" , unload = TRUE ) # nolint
@@ -91,7 +91,7 @@ test_with_dir("clustermq parallelism", {
91
91
92
92
test_with_dir(" No hpc targets? No workers." , {
93
93
skip_on_cran()
94
- skip_if_not_installed(" clustermq" )
94
+ skip_if_not_installed(" clustermq" , minimum_version = " 0.9.1 " )
95
95
skip_on_os(" windows" )
96
96
if (" package:clustermq" %in% search()) {
97
97
detach(" package:clustermq" , unload = TRUE ) # nolint
@@ -117,7 +117,7 @@ test_with_dir("No hpc targets? No workers.", {
117
117
118
118
test_with_dir(" All hpc targets up to date? No workers." , {
119
119
skip_on_cran()
120
- skip_if_not_installed(" clustermq" )
120
+ skip_if_not_installed(" clustermq" , minimum_version = " 0.9.1 " )
121
121
skip_on_os(" windows" )
122
122
if (" package:clustermq" %in% search()) {
123
123
detach(" package:clustermq" , unload = TRUE ) # nolint
@@ -153,7 +153,7 @@ test_with_dir("All hpc targets up to date? No workers.", {
153
153
154
154
test_with_dir(" Start off with non-HPC targets, then go to HPC targets." , {
155
155
skip_on_cran()
156
- skip_if_not_installed(" clustermq" )
156
+ skip_if_not_installed(" clustermq" , minimum_version = " 0.9.1 " )
157
157
skip_on_os(" windows" )
158
158
if (" package:clustermq" %in% search()) {
159
159
detach(" package:clustermq" , unload = TRUE ) # nolint
0 commit comments