diff options
| author | DWesl <22566757+DWesl@users.noreply.github.com> | 2023-01-30 08:24:02 -0500 |
|---|---|---|
| committer | DWesl <22566757+DWesl@users.noreply.github.com> | 2023-01-30 08:24:02 -0500 |
| commit | 2293a623b9deebdd284336e223ac175a7baa77b0 (patch) | |
| tree | 88c8b2e9ee87c314399299a25f67407c61c6e7f7 /numpy/f2py/tests | |
| parent | bb1b2128a827e6ee8cadc9e537a75e4b875b225a (diff) | |
| download | numpy-2293a623b9deebdd284336e223ac175a7baa77b0.tar.gz | |
CI: Rebase numpy DLLs in runtests.py.
This assumes NumPy is rebased before tests run,
but does not assume the locations are in the database.
Diffstat (limited to 'numpy/f2py/tests')
| -rw-r--r-- | numpy/f2py/tests/util.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/f2py/tests/util.py b/numpy/f2py/tests/util.py index f4d19dd1c..26fa7e49d 100644 --- a/numpy/f2py/tests/util.py +++ b/numpy/f2py/tests/util.py @@ -32,7 +32,8 @@ _module_dir = None _module_num = 5403 if sys.platform == "cygwin": - _module_list = [] + NUMPY_INSTALL_ROOT = Path(__file__).parent.parent.parent + _module_list = list(NUMPY_INSTALL_ROOT.glob("**/*.dll")) def _cleanup(): |
