Skip to content

Commit cf9d1cb

Browse files
committed
hook up tornado when running launchers
fixes capture of subprocess output
1 parent aaa4483 commit cf9d1cb

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

ipyparallel/tests/test_cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

2121
@pytest.fixture
22-
def Cluster(request):
22+
def Cluster(request, io_loop):
2323
"""Fixture for instantiating Clusters"""
2424

2525
def ClusterConstructor(**kwargs):

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,14 @@ def run(self):
128128
python_requires=">=3.6",
129129
extras_require={
130130
"nbext": ["notebook"],
131-
"test": ["pytest", "pytest-cov", "pytest-asyncio", "ipython[test]", "testpath"],
131+
"test": [
132+
"pytest",
133+
"pytest-cov",
134+
"pytest-asyncio",
135+
"pytest-tornado",
136+
"ipython[test]",
137+
"testpath",
138+
],
132139
},
133140
entry_points={
134141
"console_scripts": [

0 commit comments

Comments
 (0)