robotcode-runner 0.104.0__tar.gz → 0.105.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.
Files changed (17) hide show
  1. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/PKG-INFO +5 -5
  2. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/pyproject.toml +4 -4
  3. robotcode_runner-0.105.0/src/robotcode/runner/__version__.py +1 -0
  4. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/src/robotcode/runner/cli/discover/discover.py +4 -4
  5. robotcode_runner-0.104.0/src/robotcode/runner/__version__.py +0 -1
  6. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/.gitignore +0 -0
  7. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/LICENSE.txt +0 -0
  8. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/README.md +0 -0
  9. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/src/robotcode/runner/__init__.py +0 -0
  10. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/src/robotcode/runner/cli/__init__.py +0 -0
  11. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/src/robotcode/runner/cli/discover/__init__.py +0 -0
  12. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/src/robotcode/runner/cli/libdoc.py +0 -0
  13. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/src/robotcode/runner/cli/rebot.py +0 -0
  14. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/src/robotcode/runner/cli/robot.py +0 -0
  15. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/src/robotcode/runner/cli/testdoc.py +0 -0
  16. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/src/robotcode/runner/hooks.py +0 -0
  17. {robotcode_runner-0.104.0 → robotcode_runner-0.105.0}/src/robotcode/runner/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotcode-runner
3
- Version: 0.104.0
3
+ Version: 0.105.0
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
@@ -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.104.0
29
- Requires-Dist: robotcode-plugin==0.104.0
30
- Requires-Dist: robotcode-robot==0.104.0
31
- Requires-Dist: robotcode==0.104.0
28
+ Requires-Dist: robotcode-modifiers==0.105.0
29
+ Requires-Dist: robotcode-plugin==0.105.0
30
+ Requires-Dist: robotcode-robot==0.105.0
31
+ Requires-Dist: robotcode==0.105.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.104.0",
32
- "robotcode-modifiers==0.104.0",
33
- "robotcode-plugin==0.104.0",
34
- "robotcode==0.104.0",
31
+ "robotcode-robot==0.105.0",
32
+ "robotcode-modifiers==0.105.0",
33
+ "robotcode-plugin==0.105.0",
34
+ "robotcode==0.105.0",
35
35
  ]
36
36
 
37
37
  [project.entry-points.robotcode]
@@ -0,0 +1 @@
1
+ __version__ = "0.105.0"
@@ -39,7 +39,7 @@ from robotcode.core.lsp.types import (
39
39
  )
40
40
  from robotcode.core.uri import Uri
41
41
  from robotcode.core.utils.cli import show_hidden_arguments
42
- from robotcode.core.utils.dataclasses import from_json
42
+ from robotcode.core.utils.dataclasses import CamelSnakeMixin, from_json
43
43
  from robotcode.core.utils.path import normalized_path
44
44
  from robotcode.plugin import (
45
45
  Application,
@@ -202,7 +202,7 @@ def _patch() -> None:
202
202
 
203
203
 
204
204
  @dataclass
205
- class TestItem:
205
+ class TestItem(CamelSnakeMixin):
206
206
  type: str
207
207
  id: str
208
208
  name: str
@@ -220,13 +220,13 @@ class TestItem:
220
220
 
221
221
 
222
222
  @dataclass
223
- class ResultItem:
223
+ class ResultItem(CamelSnakeMixin):
224
224
  items: List[TestItem]
225
225
  diagnostics: Optional[Dict[str, List[Diagnostic]]] = None
226
226
 
227
227
 
228
228
  @dataclass
229
- class Statistics:
229
+ class Statistics(CamelSnakeMixin):
230
230
  suites: int = 0
231
231
  suites_with_tests: int = 0
232
232
  suites_with_tasks: int = 0
@@ -1 +0,0 @@
1
- __version__ = "0.104.0"