8000 Bubble up error message by dpr-0 · Pull Request #112 · python/cherry-picker · GitHub
[go: up one dir, main page]

Skip to content

Bubble up error message #112

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 15, 2025
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
Prev Previous commit
Next Next commit
fix E501
  • Loading branch information
dpr-0 committed Feb 5, 2024
commit 6b817ca662efe2cf483182c2fb941f0423d94654
3 changes: 2 additions & 1 deletion cherry_picker/test_cherry_picker.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,8 @@ def test_is_not_cpython_repo():
# use default CPython sha to fail on this repo
with pytest.raises(
InvalidRepoException,
match=r"The sha listed in the branch name, \w+, is not present in the repository",
match=r"The sha listed in the branch name, "
r"\w+, is not present in the repository",
):
CherryPicker("origin", "22a594a0047d7706537ff2ac676cdc0f1dcb329c", ["3.6"])

Expand Down
0