From a36d8678820edcc3bbfe0cc1a6ce40a91d073e29 Mon Sep 17 00:00:00 2001 From: "Brian E. Granger" Date: Sat, 27 Apr 2013 17:53:41 -0700 Subject: [PATCH] Removing tests from fabfile that are no longer needed. --- IPython/frontend/html/notebook/fabfile.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/IPython/frontend/html/notebook/fabfile.py b/IPython/frontend/html/notebook/fabfile.py index f156bf824..8f332f51e 100644 --- a/IPython/frontend/html/notebook/fabfile.py +++ b/IPython/frontend/html/notebook/fabfile.py @@ -7,19 +7,9 @@ import os static_dir = 'static' components_dir = os.path.join(static_dir,'components') -def test_component(name): - if not os.path.exists(os.path.join(components_dir,name)): - components() - -def components(): - """install components with bower""" - with lcd(static_dir): - local('bower install') def css(minify=True): """generate the css from less files""" - test_component('bootstrap') - test_component('less.js') if minify not in ['True', 'False', True, False]: abort('minify must be Boolean') minify = (minify in ['True',True])