diff options
author | Pauli Virtanen <pav@iki.fi> | 2010-03-06 19:10:14 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2010-03-06 19:10:14 +0000 |
commit | 399018f2b1f68877c622f8ca015c10fb40e6f625 (patch) | |
tree | e007f0eedf8959597e1efddf63c99f60f37129c1 /numpy/f2py/setup.py | |
parent | 0132351b0073f464060e1bac8b0595198c31a4e9 (diff) | |
download | numpy-399018f2b1f68877c622f8ca015c10fb40e6f625.tar.gz |
ENH: f2py: convert test suite to Nose form
Rewrite F2Py's test suite, so that it is run as a part of Numpy's tests.
These tests require compiling extension modules on-the-fly, so I added
a small helper module for that.
Diffstat (limited to 'numpy/f2py/setup.py')
-rw-r--r-- | numpy/f2py/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/f2py/setup.py b/numpy/f2py/setup.py index de53569a2..500ab58ec 100644 --- a/numpy/f2py/setup.py +++ b/numpy/f2py/setup.py @@ -31,6 +31,7 @@ def configuration(parent_package='',top_path=None): config = Configuration('f2py', parent_package, top_path) config.add_data_dir('docs') + config.add_data_dir('tests') config.add_data_files('src/fortranobject.c', 'src/fortranobject.h', |