From 7782f299107e375d79724731cacf98ebaf2ef990 Mon Sep 17 00:00:00 2001 From: Jonathan Frederic Date: Wed, 17 Jul 2013 16:17:25 -0700 Subject: [PATCH] Re-enable files directory exclusion. --- IPython/testing/iptest.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index c959fdb9f..a99df1e8d 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -254,11 +254,11 @@ def make_exclude(): exclusions.append(ipjoin('lib', 'inputhookgtk')) exclusions.append(ipjoin('kernel', 'zmq', 'gui', 'gtkembed')) - # #Also done unconditionally, exclude nbconvert directories containing - # #config files used to test. Executing the config files with iptest would - # #cause an exception. - # exclusions.append(ipjoin('nbconvert', 'tests', 'files')) - # exclusions.append(ipjoin('nbconvert', 'exporters', 'tests', 'files')) + #Also done unconditionally, exclude nbconvert directories containing + #config files used to test. Executing the config files with iptest would + #cause an exception. + exclusions.append(ipjoin('nbconvert', 'tests', 'files')) + exclusions.append(ipjoin('nbconvert', 'exporters', 'tests', 'files')) # These have to be skipped on win32 because the use echo, rm, cd, etc. # See ticket https://github.com/ipython/ipython/issues/87