Generates a single f77 file for testing
(tmpdir_factory)
| 112 | |
| 113 | @pytest.fixture(scope="session") |
| 114 | def retreal_f77(tmpdir_factory): |
| 115 | """Generates a single f77 file for testing""" |
| 116 | fdat = util.getpath("tests", "src", "return_real", "foo77.f").read_text() |
| 117 | fn = tmpdir_factory.getbasetemp() / "foo.f" |
| 118 | fn.write_text(fdat, encoding="ascii") |
| 119 | return fn |
| 120 | |
| 121 | @pytest.fixture(scope="session") |
| 122 | def f2cmap_f90(tmpdir_factory): |
nothing calls this directly
no test coverage detected
searching dependent graphs…