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.
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/PKG-INFO +1 -1
- robotcode_runner-2.3.1/src/robotcode/runner/__version__.py +1 -0
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/src/robotcode/runner/cli/libdoc.py +4 -2
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/src/robotcode/runner/cli/rebot.py +4 -2
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/src/robotcode/runner/cli/robot.py +4 -2
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/src/robotcode/runner/cli/testdoc.py +4 -2
- robotcode_runner-2.2.0/src/robotcode/runner/__version__.py +0 -1
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/.gitignore +0 -0
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/README.md +0 -0
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/pyproject.toml +0 -0
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/src/robotcode/runner/__init__.py +0 -0
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/src/robotcode/runner/cli/__init__.py +0 -0
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/src/robotcode/runner/cli/discover/__init__.py +0 -0
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/src/robotcode/runner/cli/discover/discover.py +0 -0
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/src/robotcode/runner/hooks.py +0 -0
- {robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/src/robotcode/runner/py.typed +0 -0
|
@@ -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:
|
|
93
|
-
|
|
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:
|
|
98
|
-
|
|
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:
|
|
279
|
-
|
|
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:
|
|
93
|
-
|
|
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"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/src/robotcode/runner/cli/discover/__init__.py
RENAMED
|
File without changes
|
{robotcode_runner-2.2.0 → robotcode_runner-2.3.1}/src/robotcode/runner/cli/discover/discover.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|