robotcode-runner 0.51.1__tar.gz → 0.52.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.51.1 → robotcode_runner-0.52.0}/PKG-INFO +4 -4
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/pyproject.toml +3 -3
- robotcode_runner-0.52.0/src/robotcode/runner/__version__.py +1 -0
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/src/robotcode/runner/cli/discover/discover.py +4 -3
- robotcode_runner-0.51.1/src/robotcode/runner/__version__.py +0 -1
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/.gitignore +0 -0
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/LICENSE.txt +0 -0
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/README.md +0 -0
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/src/robotcode/runner/__init__.py +0 -0
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/src/robotcode/runner/cli/__init__.py +0 -0
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/src/robotcode/runner/cli/discover/__init__.py +0 -0
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/src/robotcode/runner/cli/libdoc.py +0 -0
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/src/robotcode/runner/cli/rebot.py +0 -0
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/src/robotcode/runner/cli/robot.py +0 -0
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/src/robotcode/runner/cli/testdoc.py +0 -0
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/src/robotcode/runner/hooks.py +0 -0
- {robotcode_runner-0.51.1 → robotcode_runner-0.52.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.52.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,9 +25,9 @@ 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-robot==0.
|
|
30
|
-
Requires-Dist: robotcode==0.
|
|
28
|
+
Requires-Dist: robotcode-modifiers==0.52.0
|
|
29
|
+
Requires-Dist: robotcode-robot==0.52.0
|
|
30
|
+
Requires-Dist: robotcode==0.52.0
|
|
31
31
|
Requires-Dist: robotframework>=4.1.0
|
|
32
32
|
Description-Content-Type: text/markdown
|
|
33
33
|
|
|
@@ -28,9 +28,9 @@ 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.52.0",
|
|
32
|
+
"robotcode-modifiers==0.52.0",
|
|
33
|
+
"robotcode==0.52.0",
|
|
34
34
|
]
|
|
35
35
|
|
|
36
36
|
[project.entry-points.robotcode]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.52.0"
|
{robotcode_runner-0.51.1 → robotcode_runner-0.52.0}/src/robotcode/runner/cli/discover/discover.py
RENAMED
|
@@ -28,6 +28,7 @@ from robotcode.core.lsp.types import (
|
|
|
28
28
|
Range,
|
|
29
29
|
)
|
|
30
30
|
from robotcode.core.uri import Uri
|
|
31
|
+
from robotcode.core.utils.cli import show_hidden_arguments
|
|
31
32
|
from robotcode.plugin import Application, OutputFormat, UnknownError, pass_application
|
|
32
33
|
from robotcode.plugin.click_helper.types import add_options
|
|
33
34
|
from robotcode.robot.utils import get_robot_version
|
|
@@ -58,7 +59,7 @@ def _patch() -> None:
|
|
|
58
59
|
TestDefaults,
|
|
59
60
|
)
|
|
60
61
|
else:
|
|
61
|
-
from robot.running.builder.settings import (
|
|
62
|
+
from robot.running.builder.settings import ( # pyright: ignore[reportMissingImports]
|
|
62
63
|
Defaults as TestDefaults,
|
|
63
64
|
)
|
|
64
65
|
|
|
@@ -110,7 +111,7 @@ def _patch() -> None:
|
|
|
110
111
|
|
|
111
112
|
elif get_robot_version() >= (6, 1):
|
|
112
113
|
from robot.parsing.suitestructure import SuiteDirectory, SuiteFile
|
|
113
|
-
from robot.running.builder.settings import (
|
|
114
|
+
from robot.running.builder.settings import ( # pyright: ignore[reportMissingImports]
|
|
114
115
|
TestDefaults,
|
|
115
116
|
)
|
|
116
117
|
|
|
@@ -335,7 +336,7 @@ class Collector(SuiteVisitor):
|
|
|
335
336
|
"--read-from-stdin",
|
|
336
337
|
is_flag=True,
|
|
337
338
|
help="Read file contents from stdin. This is an internal option.",
|
|
338
|
-
hidden=
|
|
339
|
+
hidden=show_hidden_arguments(),
|
|
339
340
|
)
|
|
340
341
|
@pass_application
|
|
341
342
|
def discover(app: Application, read_from_stdin: bool) -> None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.51.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_runner-0.51.1 → robotcode_runner-0.52.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
|
|
File without changes
|