diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 62afc0c..d3b5091 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')