We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4d7d90 commit 642c36aCopy full SHA for 642c36a
tbump/test/test_cli.py
@@ -140,7 +140,6 @@ def test_end_to_end_using_tbump_toml(test_repo: Path) -> None:
140
def test_end_to_end_using_tbump_toml_no_atomic(
141
test_repo: Path, git_recorder: GitRecorder
142
) -> None:
143
-
144
tbump_toml = test_repo / "tbump.toml"
145
doc = tomlkit.loads(tbump_toml.read_text())
146
doc["git"]["atomic_push"] = False # type: ignore[index]
@@ -160,6 +159,7 @@ def test_end_to_end_using_tbump_toml_no_atomic(
160
159
161
assert bump_done(test_repo, previous_commit)
162
last_command = git_recorder.commands()[-1]
+ assert "push" in last_command
163
assert "--atomic" not in last_command
164
165
0 commit comments