From 263bb34fcbb61eed3a6855d9b8a8097508f0fda7 2012-08-11 05:15:14 From: MinRK Date: 2012-08-11 05:15:14 Subject: [PATCH] skip crash tests by default --- diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 9e37416..6190004 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -476,6 +476,8 @@ def run_iptest(): # setuptools devs refuse to fix this problem! '--exe', ] + if '-a' not in argv and '-A' not in argv: + argv = argv + ['-a', '!crash'] if nose.__version__ >= '0.11': # I don't fully understand why we need this one, but depending on what