Skip to content

Commit f48ccb0

Browse files
ci-sourcererCopilot
andcommitted
fix: fix tests
Co-authored-by: Copilot <copilot@github.com>
1 parent f519d1c commit f48ccb0

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

tests/test_tasks.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -587,6 +587,14 @@ def test_release_dry_run_only_bumps_version(self):
587587
"common_python_tasks.project.get_project_version_from_poetry",
588588
return_value="1.2.2",
589589
),
590+
patch(
591+
"common_python_tasks.project.get_release_tag_from_poetry_version",
592+
return_value="v1.2.2",
593+
),
594+
patch(
595+
"common_python_tasks.github.get_github_release_asset_paths",
596+
return_value=[],
597+
),
590598
patch("common_python_tasks.docker.build_image") as mock_build_image,
591599
patch("common_python_tasks.tasks.push_image") as mock_push_image,
592600
patch("common_python_tasks.utils.LOGGER") as mock_logger,

0 commit comments

Comments
 (0)