Generates a single f77 file for testing
(tmpdir_factory)
| 103 | |
| 104 | @pytest.fixture(scope="session") |
| 105 | def hello_world_f77(tmpdir_factory): |
| 106 | """Generates a single f77 file for testing""" |
| 107 | fdat = util.getpath("tests", "src", "cli", "hi77.f").read_text() |
| 108 | fn = tmpdir_factory.getbasetemp() / "hello.f" |
| 109 | fn.write_text(fdat, encoding="ascii") |
| 110 | return fn |
| 111 | |
| 112 | |
| 113 | @pytest.fixture(scope="session") |
nothing calls this directly
no test coverage detected
searching dependent graphs…