diff options
author | Alan McIntyre <alan.mcintyre@local> | 2008-06-17 02:17:34 +0000 |
---|---|---|
committer | Alan McIntyre <alan.mcintyre@local> | 2008-06-17 02:17:34 +0000 |
commit | 2bdd23ef6ddabcf24ef68f08fe7a737e4b52f355 (patch) | |
tree | e2a6f8f65cd88e8cfc5420f9a52fd80ed73f4cab /numpy/testing/__init__.py | |
parent | 70974af863b99d49d9a1cf947afc019976e6b8b4 (diff) | |
download | numpy-2bdd23ef6ddabcf24ef68f08fe7a737e4b52f355.tar.gz |
Update README.txt to indicate nose version dependency, and port SciPy r4424 to NumPy
(prevent import of nose until actual execution of tests). Restored
"raises" function to numpy/testing/utils.py until it can be replaced with the function of
the same name from nose.tools after the lazy import.
Diffstat (limited to 'numpy/testing/__init__.py')
-rw-r--r-- | numpy/testing/__init__.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/numpy/testing/__init__.py b/numpy/testing/__init__.py index fa448f298..17ca80c37 100644 --- a/numpy/testing/__init__.py +++ b/numpy/testing/__init__.py @@ -10,14 +10,6 @@ from unittest import TestCase import decorators as dec from utils import * - -try: - import nose - from nose.tools import raises -except ImportError: - pass - from numpytest import * - from pkgtester import Tester test = Tester().test |