(self)
| 29 | assert stdout == np.__version__ |
| 30 | |
| 31 | def test_configtool_cflags(self): |
| 32 | stdout = self.check_numpyconfig('--cflags') |
| 33 | assert f'-I{os.fspath(INCLUDE_DIR)}' in stdout |
| 34 | |
| 35 | def test_configtool_pkgconfigdir(self): |
| 36 | stdout = self.check_numpyconfig('--pkgconfigdir') |
nothing calls this directly
no test coverage detected