@@ -80,7 +80,7 @@ def test_docker_1_dockerflag_exception(plugin):
80
80
shocky = ShellCommandTask (
81
81
name = "shocky" , executable = cmd , container_info = ("docker" )
82
82
)
83
- assert "container_info has to have 2 or 3 elements" in str (excinfo .value )
83
+ assert "container_info has to have 2 elements" in str (excinfo .value )
84
84
85
85
86
86
@no_win
@@ -203,6 +203,7 @@ def test_docker_2a(plugin):
203
203
204
204
@no_win
205
205
@need_docker
206
+ @pytest .mark .skip (reason = "we probably don't want to support bindings as an input" )
206
207
def test_docker_3 (plugin , tmpdir ):
207
208
"""a simple command in container with bindings,
208
209
creating directory in tmp dir and checking if it is in the container
@@ -226,6 +227,7 @@ def test_docker_3(plugin, tmpdir):
226
227
227
228
@no_win
228
229
@need_docker
230
+ @pytest .mark .skip (reason = "we probably don't want to support bindings as an input" )
229
231
def test_docker_3_dockerflag (plugin , tmpdir ):
230
232
"""a simple command in container with bindings,
231
233
creating directory in tmp dir and checking if it is in the container
@@ -252,6 +254,7 @@ def test_docker_3_dockerflag(plugin, tmpdir):
252
254
253
255
@no_win
254
256
@need_docker
257
+ @pytest .mark .skip (reason = "we probably don't want to support bindings as an input" )
255
258
def test_docker_3_dockerflagbind (plugin , tmpdir ):
256
259
"""a simple command in container with bindings,
257
260
creating directory in tmp dir and checking if it is in the container
@@ -278,6 +281,7 @@ def test_docker_3_dockerflagbind(plugin, tmpdir):
278
281
279
282
@no_win
280
283
@need_docker
284
+ @pytest .mark .skip (reason = "we probably don't want to support bindings as an input" )
281
285
def test_docker_4 (plugin , tmpdir ):
282
286
"""task reads the file that is bounded to the container
283
287
specifying bindings,
@@ -304,6 +308,7 @@ def test_docker_4(plugin, tmpdir):
304
308
305
309
@no_win
306
310
@need_docker
311
+ @pytest .mark .skip (reason = "we probably don't want to support bindings as an input" )
307
312
def test_docker_4_dockerflag (plugin , tmpdir ):
308
313
"""task reads the file that is bounded to the container
309
314
specifying bindings,
@@ -439,6 +444,7 @@ def test_docker_st_4(plugin):
439
444
440
445
@no_win
441
446
@need_docker
447
+ @pytest .mark .skip (reason = "we probably don't want to support bindings as an input" )
442
448
def test_wf_docker_1 (plugin , tmpdir ):
443
449
"""a workflow with two connected task
444
450
the first one read the file that is bounded to the container,
@@ -483,6 +489,7 @@ def test_wf_docker_1(plugin, tmpdir):
483
489
484
490
@no_win
485
491
@need_docker
492
+ @pytest .mark .skip (reason = "we probably don't want to support bindings as an input" )
486
493
def test_wf_docker_1_dockerflag (plugin , tmpdir ):
487
494
"""a workflow with two connected task
488
495
the first one read the file that is bounded to the container,
@@ -523,6 +530,7 @@ def test_wf_docker_1_dockerflag(plugin, tmpdir):
523
530
524
531
@no_win
525
532
@need_docker
533
+ @pytest .mark .skip (reason = "we probably don't want to support bindings as an input" )
526
534
def test_wf_docker_2pre (plugin , tmpdir ):
527
535
"""a workflow with two connected task that run python scripts
528
536
the first one creates a text file and the second one reads the file
@@ -544,6 +552,7 @@ def test_wf_docker_2pre(plugin, tmpdir):
544
552
545
553
@no_win
546
554
@need_docker
555
+ @pytest .mark .skip (reason = "we probably don't want to support bindings as an input" )
547
556
def test_wf_docker_2 (plugin , tmpdir ):
548
557
"""a workflow with two connected task that run python scripts
549
558
the first one creates a text file and the second one reads the file
@@ -584,6 +593,7 @@ def test_wf_docker_2(plugin, tmpdir):
584
593
585
594
@no_win
586
595
@need_docker
596
+ @pytest .mark .skip (reason = "we probably don't want to support bindings as an input" )
587
597
def test_wf_docker_3 (plugin , tmpdir ):
588
598
"""a workflow with two connected task
589
599
the first one read the file that contains the name of the image,
@@ -736,6 +746,7 @@ def test_docker_inputspec_1a(tmpdir):
736
746
737
747
@no_win
738
748
@need_docker
749
+ @pytest .mark .skip (reason = "we probably don't want to support bindings as an input" )
739
750
def test_docker_inputspec_1b (tmpdir ):
740
751
"""a simple customized input spec for docker task
741
752
instead of using automatic binding I provide the bindings
0 commit comments