Generates a single f77 file for testing
(tmpdir_factory)
| 92 | |
| 93 | @pytest.fixture(scope="session") |
| 94 | def retreal_f77(tmpdir_factory): |
| 95 | """Generates a single f77 file for testing""" |
| 96 | fdat = util.getpath("tests", "src", "return_real", "foo77.f").read_text() |
| 97 | fn = tmpdir_factory.getbasetemp() / "foo.f" |
| 98 | fn.write_text(fdat, encoding="ascii") |
| 99 | return fn |
| 100 | |
| 101 | @pytest.fixture(scope="session") |
| 102 | def f2cmap_f90(tmpdir_factory): |
nothing calls this directly
no test coverage detected