(self)
| 33 | assert f'-I{os.fspath(INCLUDE_DIR)}' in stdout |
| 34 | |
| 35 | def test_configtool_pkgconfigdir(self): |
| 36 | stdout = self.check_numpyconfig('--pkgconfigdir') |
| 37 | assert pathlib.Path(stdout) == PKG_CONFIG_DIR.resolve() |
| 38 | |
| 39 | |
| 40 | @pytest.mark.skipif(not IS_INSTALLED, |
nothing calls this directly
no test coverage detected