##// END OF EJS Templates
don't unconditionally import nose...
don't unconditionally import nose Commit b64f754008964caef3b2a7620510b5c80f755fb0 broke IPython entirely in the absence of nose (even setup.py).

File last commit:

r3692:7403bafc
r3692:7403bafc
Show More
__init__.py
9 lines | 259 B | text/x-python | PythonLexer
try:
from numpy.testing.decorators import *
from numpy.testing.noseclasses import KnownFailure
except ImportError:
from _decorators import *
try:
from _numpy_testing_noseclasses import KnownFailure
except ImportError:
pass