From c0f64529bfbd8154d79e0a55f3da5069d0eedc43 Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 7 Nov 2014 22:10:11 -0800 Subject: [PATCH] allow js tests to run with tornado 4 and phantomjs --- IPython/testing/iptestcontroller.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/IPython/testing/iptestcontroller.py b/IPython/testing/iptestcontroller.py index 5bfb862cb..899cad906 100644 --- a/IPython/testing/iptestcontroller.py +++ b/IPython/testing/iptestcontroller.py @@ -309,10 +309,6 @@ class JSController(TestController): @property def will_run(self): should_run = all(have[a] for a in self.requirements + [self.engine]) - tornado4 = test_for('tornado.version_info', (4,0,0), callback=None) - if should_run and self.engine == 'phantomjs' and tornado4: - print("phantomjs cannot connect websockets to tornado 4", file=sys.stderr) - return False return should_run def _init_server(self):