robotcode-runner 0.67.0__tar.gz → 0.68.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-0.67.0 → robotcode_runner-0.68.1}/PKG-INFO +5 -4
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/pyproject.toml +4 -3
- robotcode_runner-0.68.1/src/robotcode/runner/__version__.py +1 -0
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/src/robotcode/runner/cli/discover/discover.py +2 -2
- robotcode_runner-0.67.0/src/robotcode/runner/__version__.py +0 -1
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/.gitignore +0 -0
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/LICENSE.txt +0 -0
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/README.md +0 -0
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/src/robotcode/runner/__init__.py +0 -0
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/src/robotcode/runner/cli/__init__.py +0 -0
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/src/robotcode/runner/cli/discover/__init__.py +0 -0
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/src/robotcode/runner/cli/libdoc.py +0 -0
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/src/robotcode/runner/cli/rebot.py +0 -0
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/src/robotcode/runner/cli/robot.py +0 -0
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/src/robotcode/runner/cli/testdoc.py +0 -0
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/src/robotcode/runner/hooks.py +0 -0
- {robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/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.68.1
|
|
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,9 +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-
|
|
30
|
-
Requires-Dist: robotcode==0.
|
|
28
|
+
Requires-Dist: robotcode-modifiers==0.68.1
|
|
29
|
+
Requires-Dist: robotcode-plugin==0.68.1
|
|
30
|
+
Requires-Dist: robotcode-robot==0.68.1
|
|
31
|
+
Requires-Dist: robotcode==0.68.1
|
|
31
32
|
Requires-Dist: robotframework>=4.1.0
|
|
32
33
|
Description-Content-Type: text/markdown
|
|
33
34
|
|
|
@@ -28,9 +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==0.
|
|
31
|
+
"robotcode-robot==0.68.1",
|
|
32
|
+
"robotcode-modifiers==0.68.1",
|
|
33
|
+
"robotcode-plugin==0.68.1",
|
|
34
|
+
"robotcode==0.68.1",
|
|
34
35
|
]
|
|
35
36
|
|
|
36
37
|
[project.entry-points.robotcode]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.68.1"
|
{robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/src/robotcode/runner/cli/discover/discover.py
RENAMED
|
@@ -19,7 +19,6 @@ from robot.running.builder import TestSuiteBuilder
|
|
|
19
19
|
from robot.running.builder.builders import SuiteStructureParser
|
|
20
20
|
from robot.utils import NormalizedDict, normalize
|
|
21
21
|
from robot.utils.filereader import FileReader
|
|
22
|
-
from robotcode.core.dataclasses import from_json
|
|
23
22
|
from robotcode.core.lsp.types import (
|
|
24
23
|
Diagnostic,
|
|
25
24
|
DiagnosticSeverity,
|
|
@@ -29,6 +28,7 @@ from robotcode.core.lsp.types import (
|
|
|
29
28
|
)
|
|
30
29
|
from robotcode.core.uri import Uri
|
|
31
30
|
from robotcode.core.utils.cli import show_hidden_arguments
|
|
31
|
+
from robotcode.core.utils.dataclasses import from_json
|
|
32
32
|
from robotcode.plugin import Application, OutputFormat, UnknownError, pass_application
|
|
33
33
|
from robotcode.plugin.click_helper.types import add_options
|
|
34
34
|
from robotcode.robot.utils import get_robot_version
|
|
@@ -816,7 +816,7 @@ def info(
|
|
|
816
816
|
"""
|
|
817
817
|
|
|
818
818
|
from robot.version import get_version as get_version
|
|
819
|
-
from robotcode.core.dataclasses import as_dict
|
|
819
|
+
from robotcode.core.utils.dataclasses import as_dict
|
|
820
820
|
|
|
821
821
|
from ...__version__ import __version__
|
|
822
822
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.67.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_runner-0.67.0 → robotcode_runner-0.68.1}/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
|
|
File without changes
|