File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ ruamel.yaml==0.13.7
3
3
rdflib == 4.2.1
4
4
rdflib-jsonld == 0.4.0
5
5
shellescape == 3.4.1
6
- schema-salad >= 2.1.20170208112505 ,< 3
6
+ schema-salad >= 2.3.20170302225134 ,< 3
7
7
typing == 3.5.2.2 ; python_version >= "2.7"
Original file line number Diff line number Diff line change 50
50
'ruamel.yaml >= 0.12.4' ,
51
51
'rdflib >= 4.2.2, < 4.3.0' ,
52
52
'shellescape >= 3.4.1, < 3.5' ,
53
- 'schema-salad >= 2.2.20170222151604 , < 3' ,
53
+ 'schema-salad >= 2.3.20170302225134 , < 3' ,
54
54
'typing >= 3.5.2, < 3.6' ,
55
55
'six >= 1.10.0' ,
56
56
Original file line number Diff line number Diff line change 6
6
import cwltool .process
7
7
import cwltool .workflow
8
8
from .util import get_data
9
+ from cwltool .main import main
9
10
10
11
class TestParamMatching (unittest .TestCase ):
11
12
def test_params (self ):
@@ -336,6 +337,11 @@ def test_lifting(self):
336
337
echo = f .make (get_data ("tests/test_bad_outputs_wf.cwl" ))
337
338
self .assertEqual (echo (inp = "foo" ), {"out" : "foo\n " })
338
339
340
+ class TestPrintDot (unittest .TestCase ):
341
+ def test_print_dot (self ):
342
+ # Require that --enable-ext is provided.
343
+ self .assertEquals (main (["--print-dot" , get_data ('tests/wf/revsort.cwl' )]), 0 )
344
+
339
345
340
346
if __name__ == '__main__' :
341
347
unittest .main ()
Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ deps = -rrequirements.txt
15
15
commands = make mypy
16
16
whitelist_externals = make
17
17
deps =
18
- mypy> =0.470
18
+ mypy = =0.470
19
19
typed-ast ==0.6.3
20
20
-rrequirements.txt
21
21
22
22
[testenv:py35-mypy]
23
23
commands = make mypy3
24
24
whitelist_externals = make
25
25
deps =
26
- mypy> =0.470
26
+ mypy = =0.470
27
27
typed-ast ==0.6.3
28
28
-rrequirements.txt
29
29
You can’t perform that action at this time.
0 commit comments