Skip to content

Commit

Permalink
Bubble up error message (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpr-0 authored Jan 15, 2025
1 parent a2d7293 commit 0a5c565
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cherry_picker/cherry_picker.py
Original file line number Diff line number Diff line change
Expand Up @@ -812,8 +812,8 @@ def cherry_pick_cli(
config=config,
chosen_config_path=chosen_config_path,
)
except InvalidRepoException:
click.echo(f"You're not inside a {config['repo']} repo right now! \U0001F645")
except InvalidRepoException as ire:
click.echo(ire.args[0])
sys.exit(-1)
except ValueError as exc:
ctx.fail(exc)
Expand Down
6 changes: 5 additions & 1 deletion cherry_picker/test_cherry_picker.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,11 @@ def test_is_cpython_repo(subprocess_check_output):

def test_is_not_cpython_repo():
# use default CPython sha to fail on this repo
with pytest.raises(InvalidRepoException):
with pytest.raises(
InvalidRepoException,
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 comments on commit 0a5c565

Please sign in to comment.