Generates a single f90 file for testing
(tmpdir_factory)
| 76 | |
| 77 | @pytest.fixture(scope="session") |
| 78 | def hello_world_f90(tmpdir_factory): |
| 79 | """Generates a single f90 file for testing""" |
| 80 | fdat = util.getpath("tests", "src", "cli", "hiworld.f90").read_text() |
| 81 | fn = tmpdir_factory.getbasetemp() / "hello.f90" |
| 82 | fn.write_text(fdat, encoding="ascii") |
| 83 | return fn |
| 84 | |
| 85 | |
| 86 | @pytest.fixture(scope="session") |
nothing calls this directly
no test coverage detected
searching dependent graphs…