(util: UtilFixture)
| 116 | |
| 117 | @pytest.mark.usefixtures("tmp_commitizen_project") |
| 118 | def test_get_commits(util: UtilFixture): |
| 119 | util.create_file_and_commit("feat(users): add username") |
| 120 | util.create_file_and_commit("fix: username exception") |
| 121 | commits = git.get_commits() |
| 122 | assert len(commits) == 2 |
| 123 | |
| 124 | |
| 125 | @pytest.mark.usefixtures("tmp_commitizen_project") |
nothing calls this directly
no test coverage detected
searching dependent graphs…