F90 file for testing disallowed CLI arguments in ghff819
(tmpdir_factory)
| 74 | |
| 75 | @pytest.fixture(scope="session") |
| 76 | def gh22819_cli(tmpdir_factory): |
| 77 | """F90 file for testing disallowed CLI arguments in ghff819""" |
| 78 | fdat = util.getpath("tests", "src", "cli", "gh_22819.pyf").read_text() |
| 79 | fn = tmpdir_factory.getbasetemp() / "gh_22819.pyf" |
| 80 | fn.write_text(fdat, encoding="ascii") |
| 81 | return fn |
| 82 | |
| 83 | |
| 84 | @pytest.fixture(scope="session") |
nothing calls this directly
no test coverage detected