(self, arg)
| 20 | reason="wasm interpreter cannot start subprocess") |
| 21 | class TestNumpyConfig: |
| 22 | def check_numpyconfig(self, arg): |
| 23 | p = subprocess.run(['numpy-config', arg], capture_output=True, text=True) |
| 24 | p.check_returncode() |
| 25 | return p.stdout.strip() |
| 26 | |
| 27 | def test_configtool_version(self): |
| 28 | stdout = self.check_numpyconfig('--version') |
no test coverage detected