We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4bf890 commit 620a249Copy full SHA for 620a249
tests/test_examples.py
@@ -137,10 +137,17 @@ def test_params(self):
137
138
139
class TestFactory(unittest.TestCase):
140
+
141
+ #def _find_default_container(default_container_id, builder):
142
+ # return default_container_id
143
144
def test_factory(self):
145
if onWindows():
- opts = {'default_container': windows_default_container_id}
- else:
146
+ #opts = {'find_default_container': functools.partial(
147
+ # _find_default_container, windows_default_container_id)}
148
+ opts = {'default_container': windows_default_container_id,
149
+ 'use_container': True}
150
+ else:
151
opts = {}
152
f = cwltool.factory.Factory(**opts)
153
echo = f.make(get_data("tests/echo.cwl"))
0 commit comments