summaryrefslogtreecommitdiff
path: root/numpy/testing/__init__.py
diff options
context:
space:
mode:
authorAlan McIntyre <alan.mcintyre@local>2008-12-31 23:46:34 +0000
committerAlan McIntyre <alan.mcintyre@local>2008-12-31 23:46:34 +0000
commit99d8b6a45bae8cd40a230a76c022aad277337c09 (patch)
tree543171343c14766c4ecbb7d30f5b68919cde5f8c /numpy/testing/__init__.py
parent8c448a31743b9ea5bc18e06dfa42c078206ca529 (diff)
downloadnumpy-99d8b6a45bae8cd40a230a76c022aad277337c09.tar.gz
Remove the following deprecated items from numpy.testing:
- ParametricTestCase - The following arguments from numpy.testing.Tester.test(): level, verbosity, all, sys_argv, testcase_pattern - Path manipulation functions: set_package_path, set_local_path, restore_path - NumpyTestCase, NumpyTest Also separated testing parameter setup from NoseTester.test into NoseTester.prepare_test_args for use in a utility script for valgrind testing (see NumPy ticket #784).
Diffstat (limited to 'numpy/testing/__init__.py')
-rw-r--r--numpy/testing/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/testing/__init__.py b/numpy/testing/__init__.py
index 53941fd76..f391c8053 100644
--- a/numpy/testing/__init__.py
+++ b/numpy/testing/__init__.py
@@ -5,12 +5,10 @@ in a single location, so that test scripts can just import it and work right
away.
"""
-#import unittest
from unittest import TestCase
import decorators as dec
from utils import *
-from parametric import ParametricTestCase
from numpytest import *
from nosetester import NoseTester as Tester
from nosetester import run_module_suite