diff options
author | Josh Wilson <person142@users.noreply.github.com> | 2020-06-07 12:25:19 -0700 |
---|---|---|
committer | Josh Wilson <person142@users.noreply.github.com> | 2020-06-07 12:25:19 -0700 |
commit | 3fee17a0da9277ee21e20018beeb2a42ef12a02f (patch) | |
tree | 58ca04f7d6a7ab603d9d7327d488f0bf5986cf4a /numpy/tests/setup.py | |
parent | 11b95d15f10c2bc652ed19d5e27efa0384396cb8 (diff) | |
download | numpy-3fee17a0da9277ee21e20018beeb2a42ef12a02f.tar.gz |
MAINT: move typing tests cases into a subdirectory of numpy/tests
Diffstat (limited to 'numpy/tests/setup.py')
-rw-r--r-- | numpy/tests/setup.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/numpy/tests/setup.py b/numpy/tests/setup.py index 03900a82b..f034cdf95 100644 --- a/numpy/tests/setup.py +++ b/numpy/tests/setup.py @@ -1,10 +1,7 @@ def configuration(parent_package='', top_path=None): from numpy.distutils.misc_util import Configuration config = Configuration('tests', parent_package, top_path) - config.add_data_dir('pass') - config.add_data_dir('fail') - config.add_data_dir('reveal') - config.add_data_files('mypy.ini') + config.add_data_dir('typing') return config |