Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion run_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,10 @@
f"SOURCE_URI = 'https://github.com/python/cpython/tree/{expected_branch}/%s'"
)
if expected != line.strip():
raise ReleaseException("SOURCE_URI is incorrect")
raise ReleaseException(

Check warning on line 536 in run_release.py

View check run for this annotation

Codecov / codecov/patch

run_release.py#L536

Added line #L536 was not covered by tests
f"SOURCE_URI is incorrect, expected: {expected}, got: {line.strip()} "
"(it needs changing before beta 1)"
Comment thread
hugovk marked this conversation as resolved.
Outdated
)


def bump_version(db: ReleaseShelf) -> None:
Expand Down
Loading