diff options
Diffstat (limited to 'numpy/testing/nosetester.py')
-rw-r--r-- | numpy/testing/nosetester.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py index f11f04b20..212afe79b 100644 --- a/numpy/testing/nosetester.py +++ b/numpy/testing/nosetester.py @@ -9,10 +9,10 @@ from __future__ import division, absolute_import, print_function import os import sys import warnings -import numpy.testing.utils from numpy.compat import basestring from numpy import ModuleDeprecationWarning + def get_package_name(filepath): """ Given a path where a package is installed, determine its name. @@ -60,7 +60,6 @@ def import_nose(): minimum_nose_version = (0,10,0) try: import nose - from nose.tools import raises except ImportError: fine_nose = False else: |