(mocker: MockerFixture)
| 24 | |
| 25 | |
| 26 | def test_re_raises_on_unexpected_exit(mocker: MockerFixture) -> None: |
| 27 | mocker.patch("tox.run.main", side_effect=ValueError) |
| 28 | with pytest.raises(ValueError): # noqa: PT011 |
| 29 | run() |
| 30 | |
| 31 | |
| 32 | def test_custom_work_dir(tox_project: ToxProjectCreator, tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…