From 2d0374752dee5d2d75e0704e659eae8ec33571d7 Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Fri, 23 Mar 2018 12:34:14 -0600 Subject: 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. --- numpy/compat/setup.py | 4 ++-- 1 file 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__': -- cgit v1.2.3