Skip to content

Commit

Permalink
TST: Fix ImportError in runtests.py (fixes numpy#5273)
Browse files Browse the repository at this point in the history
In numpy/testing/__init__.py, import Tester before importing numpy core
  • Loading branch information
chatcannon committed Nov 12, 2014
1 parent 265fbe1 commit 0f171d9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions numpy/testing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
from unittest import TestCase

from . import decorators as dec
from .nosetester import run_module_suite, NoseTester as Tester
from .utils import *
from .nosetester import NoseTester as Tester
from .nosetester import run_module_suite
test = Tester().test

0 comments on commit 0f171d9

Please sign in to comment.