diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-03-23 12:34:14 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-03-24 09:55:09 -0600 |
commit | 2d0374752dee5d2d75e0704e659eae8ec33571d7 (patch) | |
tree | 25eaf28e329eeb710d572c48b10bc10a718c0f4c | |
parent | 9f004c07c383cb30598667cee16bf0113882a70a (diff) | |
download | python-numpy-2d0374752dee5d2d75e0704e659eae8ec33571d7.tar.gz python-numpy-2d0374752dee5d2d75e0704e659eae8ec33571d7.tar.bz2 python-numpy-2d0374752dee5d2d75e0704e659eae8ec33571d7.zip |
TST: Add numpy/compat/tests
These tests were not included in the `setup.py` file and consequently
not available in the installed numpy for testing.
-rw-r--r-- | numpy/compat/setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/compat/setup.py b/numpy/compat/setup.py index 26161f330..882857428 100644 --- a/numpy/compat/setup.py +++ b/numpy/compat/setup.py @@ -1,10 +1,10 @@ -#!/usr/bin/env python from __future__ import division, print_function - def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration + config = Configuration('compat', parent_package, top_path) + config.add_data_dir('tests') return config if __name__ == '__main__': |