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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotcode-runner
3
- Version: 0.69.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.69.0
29
- Requires-Dist: robotcode-plugin==0.69.0
30
- Requires-Dist: robotcode-robot==0.69.0
31
- Requires-Dist: robotcode==0.69.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.69.0",
32
- "robotcode-modifiers==0.69.0",
33
- "robotcode-plugin==0.69.0",
34
- "robotcode==0.69.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"
@@ -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=Range(
284
- start=Position(line=0, character=0),
285
- end=Position(line=0, character=0),
286
- )
287
- if suite.source and Path(suite.source).is_file()
288
- else None,
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
- [*(app.config.default_paths if app.config.default_paths else ())]
466
- if profile.paths is None
467
- else profile.paths
468
- if isinstance(profile.paths, list)
469
- else [profile.paths],
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
- [*(app.config.default_paths if app.config.default_paths else ())]
189
- if profile.paths is None
190
- else profile.paths
191
- if isinstance(profile.paths, list)
192
- else [profile.paths],
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"