X7ROOT File Manager
Current Path:
/opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/distutils/tests
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
numpy
/
distutils
/
tests
/
ðŸ“
..
📄
__init__.py
(0 B)
ðŸ“
__pycache__
📄
test_build_ext.py
(2.7 KB)
📄
test_ccompiler_opt.py
(28.1 KB)
📄
test_ccompiler_opt_conf.py
(6.2 KB)
📄
test_exec_command.py
(7.22 KB)
📄
test_fcompiler.py
(1.25 KB)
📄
test_fcompiler_gnu.py
(2.09 KB)
📄
test_fcompiler_intel.py
(1.03 KB)
📄
test_fcompiler_nagfor.py
(1.08 KB)
📄
test_from_template.py
(1.08 KB)
📄
test_log.py
(868 B)
📄
test_mingw32ccompiler.py
(1.57 KB)
📄
test_misc_util.py
(3.14 KB)
📄
test_npy_pkg_config.py
(2.5 KB)
📄
test_shell_utils.py
(2.06 KB)
📄
test_system_info.py
(10.74 KB)
Editing: test_fcompiler.py
from numpy.testing import assert_ import numpy.distutils.fcompiler customizable_flags = [ ('f77', 'F77FLAGS'), ('f90', 'F90FLAGS'), ('free', 'FREEFLAGS'), ('arch', 'FARCH'), ('debug', 'FDEBUG'), ('flags', 'FFLAGS'), ('linker_so', 'LDFLAGS'), ] def test_fcompiler_flags(monkeypatch): monkeypatch.setenv('NPY_DISTUTILS_APPEND_FLAGS', '0') fc = numpy.distutils.fcompiler.new_fcompiler(compiler='none') flag_vars = fc.flag_vars.clone(lambda *args, **kwargs: None) for opt, envvar in customizable_flags: new_flag = '-dummy-{}-flag'.format(opt) prev_flags = getattr(flag_vars, opt) monkeypatch.setenv(envvar, new_flag) new_flags = getattr(flag_vars, opt) monkeypatch.delenv(envvar) assert_(new_flags == [new_flag]) monkeypatch.setenv('NPY_DISTUTILS_APPEND_FLAGS', '1') for opt, envvar in customizable_flags: new_flag = '-dummy-{}-flag'.format(opt) prev_flags = getattr(flag_vars, opt) monkeypatch.setenv(envvar, new_flag) new_flags = getattr(flag_vars, opt) monkeypatch.delenv(envvar) if prev_flags is None: assert_(new_flags == [new_flag]) else: assert_(new_flags == prev_flags + [new_flag])
Upload File
Create Folder