()
| 87 | |
| 88 | |
| 89 | def test_include_path(): |
| 90 | incdir = np.f2py.get_include() |
| 91 | fnames_in_dir = os.listdir(incdir) |
| 92 | for fname in ("fortranobject.c", "fortranobject.h"): |
| 93 | assert fname in fnames_in_dir |
| 94 | |
| 95 | |
| 96 | @pytest.mark.slow |
nothing calls this directly
no test coverage detected
searching dependent graphs…