(f2py_cmd)
| 34 | @pytest.mark.xfail(reason="Test is unreliable") |
| 35 | @pytest.mark.parametrize('f2py_cmd', find_f2py_commands()) |
| 36 | def test_f2py(f2py_cmd): |
| 37 | # test that we can run f2py script |
| 38 | stdout = subprocess.check_output([f2py_cmd, '-v']) |
| 39 | assert_equal(stdout.strip(), np.__version__.encode('ascii')) |
| 40 | |
| 41 | |
| 42 | @pytest.mark.skipif(IS_WASM, reason="Cannot start subprocess") |
nothing calls this directly
no test coverage detected
searching dependent graphs…