robotcode-runner 2.2.0__tar.gz → 2.3.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotcode-runner
3
- Version: 2.2.0
3
+ Version: 2.3.1
4
4
  Summary: RobotCode runner for Robot Framework
5
5
  Project-URL: Homepage, https://robotcode.io
6
6
  Project-URL: Donate, https://opencollective.com/robotcode
@@ -0,0 +1 @@
1
+ __version__ = "2.3.1"
@@ -89,8 +89,10 @@ def libdoc(app: Application, robot_options_and_args: Tuple[str, ...]) -> None:
89
89
  options = libdoc_options.build_command_line()
90
90
 
91
91
  app.verbose(
92
- lambda: "Executing libdoc robot with the following options:\n "
93
- + " ".join(f'"{o}"' for o in (options + list(robot_options_and_args)))
92
+ lambda: (
93
+ "Executing libdoc robot with the following options:\n "
94
+ + " ".join(f'"{o}"' for o in (options + list(robot_options_and_args)))
95
+ )
94
96
  )
95
97
 
96
98
  app.exit(
@@ -94,8 +94,10 @@ def rebot(app: Application, robot_options_and_args: Tuple[str, ...]) -> None:
94
94
  raise click.ClickException(str(e)) from e
95
95
 
96
96
  app.verbose(
97
- lambda: "Executing rebot with the following options:\n "
98
- + " ".join(f'"{o}"' for o in (options + list(robot_options_and_args)))
97
+ lambda: (
98
+ "Executing rebot with the following options:\n "
99
+ + " ".join(f'"{o}"' for o in (options + list(robot_options_and_args)))
100
+ )
99
101
  )
100
102
 
101
103
  console_links_args = []
@@ -275,8 +275,10 @@ def handle_robot_options(
275
275
  cmd_options = profile.build_command_line()
276
276
 
277
277
  app.verbose(
278
- lambda: "Executing robot with following options:\n "
279
- + " ".join(f'"{o}"' for o in (cmd_options + list(robot_options_and_args)))
278
+ lambda: (
279
+ "Executing robot with following options:\n "
280
+ + " ".join(f'"{o}"' for o in (cmd_options + list(robot_options_and_args)))
281
+ )
280
282
  )
281
283
 
282
284
  if root_folder is not None:
@@ -89,8 +89,10 @@ def testdoc(app: Application, robot_options_and_args: Tuple[str, ...]) -> None:
89
89
  options = testdoc_options.build_command_line()
90
90
 
91
91
  app.verbose(
92
- lambda: "Executing testdoc with the following options:\n "
93
- + " ".join(f'"{o}"' for o in (options + list(robot_options_and_args)))
92
+ lambda: (
93
+ "Executing testdoc with the following options:\n "
94
+ + " ".join(f'"{o}"' for o in (options + list(robot_options_and_args)))
95
+ )
94
96
  )
95
97
 
96
98
  app.exit(
@@ -1 +0,0 @@
1
- __version__ = "2.2.0"