From ae177a38cb5fc02eb4e7d2e9bf4833d61c6c9e39 Mon Sep 17 00:00:00 2001 From: MinRK Date: Sat, 30 Jun 2012 01:00:56 -0700 Subject: [PATCH] remove empty IPython.scripts test group --- IPython/testing/iptest.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 62afc0c9b..d3b5091e1 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -256,8 +256,7 @@ def make_exclude(): exclusions.append(ipjoin('testing', 'plugin', 'dtexample')) if not have['pexpect']: - exclusions.extend([ipjoin('scripts', 'irunner'), - ipjoin('lib', 'irunner'), + exclusions.extend([ipjoin('lib', 'irunner'), ipjoin('lib', 'tests', 'test_irunner'), ipjoin('frontend', 'terminal', 'console'), ]) @@ -433,7 +432,7 @@ def make_runners(): # Packages to be tested via nose, that only depend on the stdlib nose_pkg_names = ['config', 'core', 'extensions', 'frontend', 'lib', - 'scripts', 'testing', 'utils', 'nbformat' ] + 'testing', 'utils', 'nbformat' ] if have['zmq']: nose_pkg_names.append('zmq')