Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix(cli): fix action display in --help when there are few actions#2679

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
nejch merged 1 commit intopython-gitlab:mainfromjouve:help
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes fromall 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
17 changes: 14 additions & 3 deletionsgitlab/cli.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,6 +3,7 @@
import os
import re
import sys
import textwrap
from types import ModuleType
from typing import (
Any,
Expand DownExpand Up@@ -50,11 +51,21 @@ def format_help(self) -> str:
for line in result.splitlines(keepends=True):
# All of our resources are on one line and wrapped inside braces.
# For example: {application,resource1,resource2}
# except if there are fewer resources - then the line and help text
# are collapsed on the same line.
# For example: {list} Action to execute on the GitLab resource.
# We then put each resource on its own line to make it easier to read.
if line.strip().startswith("{"):
choices = line.strip().strip("{}").split(",")
choices_str = f"\n{indent}".join(choices)
line = f"{indent}{choices_str}\n"
choice_string, help_string = line.split("}", 1)
choice_list = choice_string.strip(" {").split(",")
help_string = help_string.strip()

if help_string:
help_indent = len(max(choice_list, key=len)) * " "
choice_list.append(f"{help_indent} {help_string}")

choices = "\n".join(choice_list)
line = f"{textwrap.indent(choices, indent)}\n"
output += line
return output

Expand Down
6 changes: 6 additions & 0 deletionstests/functional/cli/test_cli.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -46,6 +46,12 @@ def test_resource_help_prints_actions_vertically(script_runner):
assert ret.returncode == 0


def test_resource_help_prints_actions_vertically_only_one_action(script_runner):
ret = script_runner.run(["gitlab", "event", "--help"])
assert """action:\n list\n""" in ret.stdout
assert ret.returncode == 0


@pytest.mark.script_launch_mode("inprocess")
@responses.activate
def test_defaults_to_gitlab_com(script_runner, resp_get_project, monkeypatch):
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp