F90 file for testing warnings in gh23598
(tmpdir_factory)
| 85 | |
| 86 | @pytest.fixture(scope="session") |
| 87 | def gh23598_warn(tmpdir_factory): |
| 88 | """F90 file for testing warnings in gh23598""" |
| 89 | fdat = util.getpath("tests", "src", "crackfortran", "gh23598Warn.f90").read_text() |
| 90 | fn = tmpdir_factory.getbasetemp() / "gh23598Warn.f90" |
| 91 | fn.write_text(fdat, encoding="ascii") |
| 92 | return fn |
| 93 | |
| 94 | |
| 95 | @pytest.fixture(scope="session") |
nothing calls this directly
no test coverage detected
searching dependent graphs…