F90 file for testing warnings in gh23598
(tmpdir_factory)
| 65 | |
| 66 | @pytest.fixture(scope="session") |
| 67 | def gh23598_warn(tmpdir_factory): |
| 68 | """F90 file for testing warnings in gh23598""" |
| 69 | fdat = util.getpath("tests", "src", "crackfortran", "gh23598Warn.f90").read_text() |
| 70 | fn = tmpdir_factory.getbasetemp() / "gh23598Warn.f90" |
| 71 | fn.write_text(fdat, encoding="ascii") |
| 72 | return fn |
| 73 | |
| 74 | |
| 75 | @pytest.fixture(scope="session") |
nothing calls this directly
no test coverage detected