robotcode-runner 0.69.0__tar.gz → 0.71.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.
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/PKG-INFO +5 -5
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/pyproject.toml +4 -4
- robotcode_runner-0.71.0/src/robotcode/runner/__version__.py +1 -0
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/src/robotcode/runner/cli/discover/discover.py +13 -11
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/src/robotcode/runner/cli/robot.py +5 -5
- robotcode_runner-0.69.0/src/robotcode/runner/__version__.py +0 -1
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/.gitignore +0 -0
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/LICENSE.txt +0 -0
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/README.md +0 -0
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/src/robotcode/runner/__init__.py +0 -0
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/src/robotcode/runner/cli/__init__.py +0 -0
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/src/robotcode/runner/cli/discover/__init__.py +0 -0
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/src/robotcode/runner/cli/libdoc.py +0 -0
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/src/robotcode/runner/cli/rebot.py +0 -0
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/src/robotcode/runner/cli/testdoc.py +0 -0
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/src/robotcode/runner/hooks.py +0 -0
- {robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/src/robotcode/runner/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: robotcode-runner
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.71.0
|
|
4
4
|
Summary: RobotCode runner plugin for Robot Framework
|
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
|
6
6
|
Project-URL: Donate, https://github.com/sponsors/d-biehl
|
|
@@ -25,10 +25,10 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
|
25
25
|
Classifier: Topic :: Utilities
|
|
26
26
|
Classifier: Typing :: Typed
|
|
27
27
|
Requires-Python: >=3.8
|
|
28
|
-
Requires-Dist: robotcode-modifiers==0.
|
|
29
|
-
Requires-Dist: robotcode-plugin==0.
|
|
30
|
-
Requires-Dist: robotcode-robot==0.
|
|
31
|
-
Requires-Dist: robotcode==0.
|
|
28
|
+
Requires-Dist: robotcode-modifiers==0.71.0
|
|
29
|
+
Requires-Dist: robotcode-plugin==0.71.0
|
|
30
|
+
Requires-Dist: robotcode-robot==0.71.0
|
|
31
|
+
Requires-Dist: robotcode==0.71.0
|
|
32
32
|
Requires-Dist: robotframework>=4.1.0
|
|
33
33
|
Description-Content-Type: text/markdown
|
|
34
34
|
|
|
@@ -28,10 +28,10 @@ classifiers = [
|
|
|
28
28
|
dynamic = ["version"]
|
|
29
29
|
dependencies = [
|
|
30
30
|
"robotframework>=4.1.0",
|
|
31
|
-
"robotcode-robot==0.
|
|
32
|
-
"robotcode-modifiers==0.
|
|
33
|
-
"robotcode-plugin==0.
|
|
34
|
-
"robotcode==0.
|
|
31
|
+
"robotcode-robot==0.71.0",
|
|
32
|
+
"robotcode-modifiers==0.71.0",
|
|
33
|
+
"robotcode-plugin==0.71.0",
|
|
34
|
+
"robotcode==0.71.0",
|
|
35
35
|
]
|
|
36
36
|
|
|
37
37
|
[project.entry-points.robotcode]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.71.0"
|
{robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/src/robotcode/runner/cli/discover/discover.py
RENAMED
|
@@ -280,12 +280,14 @@ class Collector(SuiteVisitor):
|
|
|
280
280
|
uri=str(Uri.from_path(absolute_path)) if absolute_path else None,
|
|
281
281
|
source=str(suite.source),
|
|
282
282
|
rel_source=get_rel_source(suite.source),
|
|
283
|
-
range=
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
283
|
+
range=(
|
|
284
|
+
Range(
|
|
285
|
+
start=Position(line=0, character=0),
|
|
286
|
+
end=Position(line=0, character=0),
|
|
287
|
+
)
|
|
288
|
+
if suite.source and Path(suite.source).is_file()
|
|
289
|
+
else None
|
|
290
|
+
),
|
|
289
291
|
children=[],
|
|
290
292
|
error=suite.error_message if isinstance(suite, ErroneousTestSuite) else None,
|
|
291
293
|
)
|
|
@@ -462,11 +464,11 @@ def handle_options(
|
|
|
462
464
|
|
|
463
465
|
options, arguments = RobotFrameworkEx(
|
|
464
466
|
app,
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
467
|
+
(
|
|
468
|
+
[*(app.config.default_paths if app.config.default_paths else ())]
|
|
469
|
+
if profile.paths is None
|
|
470
|
+
else profile.paths if isinstance(profile.paths, list) else [profile.paths]
|
|
471
|
+
),
|
|
470
472
|
app.config.dry,
|
|
471
473
|
root_folder,
|
|
472
474
|
).parse_arguments((*cmd_options, *robot_options_and_args))
|
|
@@ -185,11 +185,11 @@ def robot(
|
|
|
185
185
|
int,
|
|
186
186
|
RobotFrameworkEx(
|
|
187
187
|
app,
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
188
|
+
(
|
|
189
|
+
[*(app.config.default_paths if app.config.default_paths else ())]
|
|
190
|
+
if profile.paths is None
|
|
191
|
+
else profile.paths if isinstance(profile.paths, list) else [profile.paths]
|
|
192
|
+
),
|
|
193
193
|
app.config.dry,
|
|
194
194
|
root_folder,
|
|
195
195
|
).execute_cli((*cmd_options, *robot_options_and_args), exit=False),
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.69.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_runner-0.69.0 → robotcode_runner-0.71.0}/src/robotcode/runner/cli/discover/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|