Skip to content

Commit a0b603a

Browse files
Dorian Birrauxstefanr-wri
authored andcommitted
test should not trigger lib installation
1 parent 5184732 commit a0b603a

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

wolframclient/cli/commands/test.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@
1010
from wolframclient.utils.importutils import module_path
1111

1212

13-
@to_tuple
14-
def dependencies():
15-
yield ("pytz", "2018.6")
16-
17-
if not six.JYTHON:
18-
yield ("numpy", not six.PY2 and "1.15.3" or None)
19-
yield ("pillow", "7.1.2")
20-
yield ("requests", "2.20.0")
21-
yield ("oauthlib", "2.1.0")
22-
yield ("pyzmq", "17.1.2")
23-
yield ("pandas", "1.0.4")
24-
yield ("unittest-xml-reporting", None)
25-
if not six.PY2:
26-
yield ("aiohttp", "3.6.2")
13+
# @to_tuple
14+
# def dependencies():
15+
# yield ("pytz", "2018.6")
16+
#
17+
# if not six.JYTHON:
18+
# yield ("numpy", not six.PY2 and "1.15.3" or None)
19+
# yield ("pillow", "7.1.2")
20+
# yield ("requests", "2.20.0")
21+
# yield ("oauthlib", "2.1.0")
22+
# yield ("pyzmq", "17.1.2")
23+
# yield ("pandas", "1.0.4")
24+
# yield ("unittest-xml-reporting", None)
25+
# if not six.PY2:
26+
# yield ("aiohttp", "3.6.2")
2727

2828

2929
class Command(SimpleCommand):
@@ -33,7 +33,7 @@ class Command(SimpleCommand):
3333

3434
modules = ["wolframclient.tests"]
3535

36-
dependencies = dependencies()
36+
dependencies = ()
3737

3838
def add_arguments(self, parser):
3939
parser.add_argument(

0 commit comments

Comments
 (0)