Skip to content

Commit b85e212

Browse files
committed
conditional container
1 parent b879ee7 commit b85e212

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_examples.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import cwltool.workflow
2525
import schema_salad.validate
2626
from cwltool.main import main
27+
from cwltool.utils import onWindows
2728

2829
from .util import get_data, needs_docker
2930

@@ -615,7 +616,8 @@ def test_wf_without_container(self):
615616
class TestChecksum(TestCmdLine):
616617

617618
def test_compute_checksum(self):
618-
f = cwltool.factory.Factory(compute_checksum=True)
619+
f = cwltool.factory.Factory(compute_checksum=True,
620+
use_container=onWindows())
619621
echo = f.make(get_data("tests/wf/cat-tool.cwl"))
620622
output = echo(file1={
621623
"class": "File",

0 commit comments

Comments
 (0)