Skip to content
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

Avoid abridged click output #2768

Merged
merged 2 commits into from
Aug 10, 2020
Merged
Changes from all commits
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
3 changes: 3 additions & 0 deletions molecule/command/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,9 @@ def click_group_ex():
# yellow : special commands, like full test sequence, or login
return click.group(
cls=HelpColorsGroup,
# Workaround to disable click help line truncation to ~80 chars
# https://github.com/pallets/click/issues/486
context_settings=dict(max_content_width=9999),
ssbarnea marked this conversation as resolved.
Show resolved Hide resolved
help_headers_color="yellow",
help_options_color="green",
help_options_custom_colors={
Expand Down