(capsys: CaptureFixture)
| 116 | |
| 117 | |
| 118 | def test_parser_hint(capsys: CaptureFixture) -> None: |
| 119 | parser = ToxParser.base() |
| 120 | with pytest.raises(SystemExit): |
| 121 | parser.parse_args("foo") |
| 122 | _out, err = capsys.readouterr() |
| 123 | assert err.endswith("hint: if you tried to pass arguments to a command use -- to separate them from tox ones\n") |
nothing calls this directly
no test coverage detected
searching dependent graphs…