robotcode-plugin 0.92.0__tar.gz → 0.93.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -282,6 +282,8 @@ playground/
282
282
  test-results
283
283
  results.html
284
284
  report.html
285
+ log.html
286
+ output.xml
285
287
 
286
288
  # pyenv
287
289
  .python-version
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: robotcode-plugin
3
- Version: 0.92.0
3
+ Version: 0.93.0
4
4
  Summary: Some classes for RobotCode plugin management
5
5
  Project-URL: Donate, https://opencollective.com/robotcode
6
6
  Project-URL: Documentation, https://github.com/robotcodedev/robotcode#readme
@@ -64,6 +64,8 @@ class OutputFormat(str, Enum):
64
64
  class CommonConfig:
65
65
  config_files: Optional[Sequence[Path]] = None
66
66
  profiles: Optional[Sequence[str]] = None
67
+ root: Optional[Path] = None
68
+ no_vcs: bool = False
67
69
  dry: bool = False
68
70
  verbose: bool = False
69
71
  colored_output: ColoredOutput = ColoredOutput.AUTO
@@ -0,0 +1 @@
1
+ __version__ = "0.93.0"
@@ -40,10 +40,9 @@ class AliasedGroup(click.Group):
40
40
  limit = formatter.width - 6 - max(len(cmd[0]) for cmd in commands)
41
41
 
42
42
  rows = []
43
- for subcommand, cmd in commands:
43
+ for subcommand, cmd in sorted(commands):
44
44
  help = cmd.get_short_help_str(limit)
45
- rows.append((subcommand, help))
46
- rows.append(("", f"(Alias for `{cmd.name}` command)"))
45
+ rows.append((subcommand, f"{help} (Alias for `{cmd.name}` command)"))
47
46
  if rows:
48
47
  with formatter.section("Aliases"):
49
48
  formatter.write_dl(rows)
@@ -1 +0,0 @@
1
- __version__ = "0.92.0"