diff options
author | David Cournapeau <cournape@gmail.com> | 2008-04-07 23:18:32 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-04-07 23:18:32 +0000 |
commit | 640018fac45026b3fd70846c62297bfedac5afa3 (patch) | |
tree | 920474456cb2daf83eaa391feeb5bcc3cacfc6c7 | |
parent | e18fb0b5eecbd5bd54c1e19a7673ecfb71bb19cf (diff) | |
download | numpy-640018fac45026b3fd70846c62297bfedac5afa3.tar.gz |
Add the tests in setup file for testing package.
-rwxr-xr-x | numpy/testing/setup.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/testing/setup.py b/numpy/testing/setup.py index ad248d27f..6d8fc85c5 100755 --- a/numpy/testing/setup.py +++ b/numpy/testing/setup.py @@ -3,6 +3,8 @@ def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration config = Configuration('testing',parent_package,top_path) + + config.add_data_dir('tests') return config if __name__ == '__main__': |