File tree Expand file tree Collapse file tree
wolframclient/cli/commands Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11from __future__ import absolute_import , print_function , unicode_literals
22
3- import sys
4- import unittest
5-
63from wolframclient .cli .utils import SimpleCommand
74from wolframclient .utils import six
85from wolframclient .utils .decorators import to_tuple
9- from wolframclient .utils .functional import map
10- from wolframclient .utils .importutils import module_path
116
127
138@to_tuple
@@ -30,4 +25,4 @@ class Command(SimpleCommand):
3025 A list of patterns can be provided to specify the tests to run.
3126 """
3227
33- dependencies = dependencies ()
28+ dependencies = dependencies ()
Original file line number Diff line number Diff line change 44import unittest
55
66from wolframclient .cli .utils import SimpleCommand
7- from wolframclient .utils import six
8- from wolframclient .utils .decorators import to_tuple
97from wolframclient .utils .functional import map
108from wolframclient .utils .importutils import module_path
119
10+
1211class Command (SimpleCommand ):
1312 """ Run test suites from the tests modules.
1413 A list of patterns can be provided to specify the tests to run.
1514 """
1615
1716 modules = ["wolframclient.tests" ]
1817
19-
2018 def add_arguments (self , parser ):
2119 parser .add_argument (
2220 "-x" ,
You can’t perform that action at this time.
0 commit comments