From d73b4e428eadb37144028f1545d4264e02f7f85b Mon Sep 17 00:00:00 2001 From: MinRK Date: Mon, 11 Jun 2012 14:21:18 -0700 Subject: [PATCH] don't warn in iptest if deathrow/quarantine are missing --- IPython/testing/iptest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 2c5070a1d..e8c784563 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -298,6 +298,9 @@ def make_exclude(): # check for any exclusions that don't seem to exist: parent, _ = os.path.split(get_ipython_package_dir()) for exclusion in exclusions: + if exclusion.endswith(('deathrow', 'quarantine')): + # ignore deathrow/quarantine, which exist in dev, but not install + continue fullpath = pjoin(parent, exclusion) if not os.path.exists(fullpath) and not glob.glob(fullpath + '.*'): warn("Excluding nonexistent file: %r\n" % exclusion)