From d29fef6b5ffcf6894b228038ca5be4c4644623bb 2014-06-10 19:38:46 From: Thomas Kluyver Date: 2014-06-10 19:38:46 Subject: [PATCH] Add jsonschema & jsonpointer requirements for JS tests --- diff --git a/IPython/testing/iptestcontroller.py b/IPython/testing/iptestcontroller.py index 2982397..5a089e0 100644 --- a/IPython/testing/iptestcontroller.py +++ b/IPython/testing/iptestcontroller.py @@ -217,7 +217,8 @@ def all_js_groups(): class JSController(TestController): """Run CasperJS tests """ - requirements = ['zmq', 'tornado', 'jinja2', 'casperjs', 'sqlite3'] + requirements = ['zmq', 'tornado', 'jinja2', 'casperjs', 'sqlite3', + 'jsonschema', 'jsonpointer'] display_slimer_output = False def __init__(self, section, enabled=True, engine='phantomjs'):