From 4993ddd498ab170cc80e93a662875f736700eaa5 Mon Sep 17 00:00:00 2001 From: Paul Ivanov Date: Wed, 23 Oct 2013 11:48:33 -0700 Subject: [PATCH] make js tests quieter, silence notebook server --- IPython/testing/iptestcontroller.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IPython/testing/iptestcontroller.py b/IPython/testing/iptestcontroller.py index 65377adc0..498e6da6e 100644 --- a/IPython/testing/iptestcontroller.py +++ b/IPython/testing/iptestcontroller.py @@ -204,6 +204,8 @@ def run_webapp(q, nbdir, loglevel=0): """start the IPython Notebook, and pass port back to the queue""" import os import IPython.html.notebookapp as nbapp + import sys + sys.stderr = open(os.devnull, 'w') os.environ["IPYTHONDIR"] = nbdir server = nbapp.NotebookApp() args = ['--no-browser']