()
| 30 | |
| 31 | |
| 32 | def test_factory_fails(): |
| 33 | config = BaseConfig() |
| 34 | config.settings.update({"name": "Nothing"}) |
| 35 | with pytest.raises( |
| 36 | NoCommitizenFoundException, |
| 37 | match=re.escape("The committer has not been found in the system."), |
| 38 | ): |
| 39 | factory.committer_factory(config) |
| 40 | |
| 41 | |
| 42 | def test_discover_plugins(tmp_path): |
nothing calls this directly
no test coverage detected
searching dependent graphs…