robotcode-robot 0.82.2__py3-none-any.whl → 0.83.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- robotcode/robot/__version__.py +1 -1
- robotcode/robot/diagnostics/namespace.py +2 -2
- {robotcode_robot-0.82.2.dist-info → robotcode_robot-0.83.0.dist-info}/METADATA +2 -2
- {robotcode_robot-0.82.2.dist-info → robotcode_robot-0.83.0.dist-info}/RECORD +6 -6
- {robotcode_robot-0.82.2.dist-info → robotcode_robot-0.83.0.dist-info}/WHEEL +0 -0
- {robotcode_robot-0.82.2.dist-info → robotcode_robot-0.83.0.dist-info}/licenses/LICENSE.txt +0 -0
robotcode/robot/__version__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.
|
1
|
+
__version__ = "0.83.0"
|
@@ -27,7 +27,7 @@ from robot.errors import VariableError
|
|
27
27
|
from robot.libraries import STDLIBS
|
28
28
|
from robot.parsing.lexer.tokens import Token
|
29
29
|
from robot.parsing.model.blocks import Keyword, SettingSection, TestCase, VariableSection
|
30
|
-
from robot.parsing.model.statements import Arguments,
|
30
|
+
from robot.parsing.model.statements import Arguments, Setup, Statement, Timeout
|
31
31
|
from robot.parsing.model.statements import LibraryImport as RobotLibraryImport
|
32
32
|
from robot.parsing.model.statements import ResourceImport as RobotResourceImport
|
33
33
|
from robot.parsing.model.statements import (
|
@@ -1039,7 +1039,7 @@ class Namespace:
|
|
1039
1039
|
|
1040
1040
|
in_args = isinstance(test_or_keyword_nodes[-1], Arguments) if test_or_keyword_nodes else False
|
1041
1041
|
only_args = (
|
1042
|
-
isinstance(test_or_keyword_nodes[-1], (Arguments,
|
1042
|
+
isinstance(test_or_keyword_nodes[-1], (Arguments, Setup, Timeout)) if test_or_keyword_nodes else False
|
1043
1043
|
)
|
1044
1044
|
|
1045
1045
|
for var in chain(
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robotcode-robot
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.83.0
|
4
4
|
Summary: Support classes for RobotCode for handling Robot Framework projects.
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
6
6
|
Project-URL: Donate, https://opencollective.com/robotcode
|
@@ -26,7 +26,7 @@ Classifier: Topic :: Utilities
|
|
26
26
|
Classifier: Typing :: Typed
|
27
27
|
Requires-Python: >=3.8
|
28
28
|
Requires-Dist: platformdirs<4.2.0,>=3.2.0
|
29
|
-
Requires-Dist: robotcode-core==0.
|
29
|
+
Requires-Dist: robotcode-core==0.83.0
|
30
30
|
Requires-Dist: robotframework>=4.1.0
|
31
31
|
Requires-Dist: tomli>=1.1.0; python_version < '3.11'
|
32
32
|
Description-Content-Type: text/markdown
|
@@ -1,5 +1,5 @@
|
|
1
1
|
robotcode/robot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
robotcode/robot/__version__.py,sha256=
|
2
|
+
robotcode/robot/__version__.py,sha256=FwfsRG64Uncan1BBCrMrXMKjMO1MhfWoBbdMOZk1GnU,23
|
3
3
|
robotcode/robot/py.typed,sha256=bWew9mHgMy8LqMu7RuqQXFXLBxh2CRx0dUbSx-3wE48,27
|
4
4
|
robotcode/robot/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
robotcode/robot/config/loader.py,sha256=LpGqJAdysvVSZpccW-Il52xn9RMBBb9X94emlBY7zCc,6077
|
@@ -12,7 +12,7 @@ robotcode/robot/diagnostics/errors.py,sha256=VavgWYuHoW5sTT16j2rl9hxMhWxBKNSFsNm
|
|
12
12
|
robotcode/robot/diagnostics/imports_manager.py,sha256=qE__lm0Hsj3R0gUauXRmbWJPYihNjk3O-c5hcICGQjc,56251
|
13
13
|
robotcode/robot/diagnostics/library_doc.py,sha256=sLENYhMoq5IvYgd0jUhVpRkRTvY9IfTotlthLUUO0vY,97124
|
14
14
|
robotcode/robot/diagnostics/model_helper.py,sha256=_5ixKKMrb-nY-uvV8_WjJ1rlNlz7gT7kHM5NYi_hjVg,30232
|
15
|
-
robotcode/robot/diagnostics/namespace.py,sha256=
|
15
|
+
robotcode/robot/diagnostics/namespace.py,sha256=dpaJximTWvCXvjJK1deP4SiTxxYq3r4Yid9Lf-Es8hI,91311
|
16
16
|
robotcode/robot/diagnostics/namespace_analyzer.py,sha256=PWZjpLdn-9GCpp4L4dKxVF2B1hxzSEdDzBNUw2Lp51A,50937
|
17
17
|
robotcode/robot/diagnostics/workspace_config.py,sha256=lWNq1KmGGJ9cHFNHn0QTCBHHzgz4AewTw0l-W4TKrj0,1803
|
18
18
|
robotcode/robot/utils/__init__.py,sha256=OjNPMn_XSnfaMCyKd8Kmq6vlRt6mIGlzW4qiiD3ykUg,447
|
@@ -23,7 +23,7 @@ robotcode/robot/utils/robot_path.py,sha256=qKBh1cEnReBBLKkWu4gB9EzM-scAwE4xJc1m6
|
|
23
23
|
robotcode/robot/utils/stubs.py,sha256=6-DMI_CQVJHDgG13t-zINKGCRb_Q7MQPm0_AkfhAEvE,748
|
24
24
|
robotcode/robot/utils/variables.py,sha256=fEl8S37lb_mD4hn2MZRAlkiuLGBjAOeZVK0r2o2CfPw,742
|
25
25
|
robotcode/robot/utils/visitor.py,sha256=uYLqEhGPmzWKWI3SSrmCaYMwtKvNShvbiPZ4b3FavX8,3241
|
26
|
-
robotcode_robot-0.
|
27
|
-
robotcode_robot-0.
|
28
|
-
robotcode_robot-0.
|
29
|
-
robotcode_robot-0.
|
26
|
+
robotcode_robot-0.83.0.dist-info/METADATA,sha256=_kprBQcNZ56FfZmGxvdmL06T6OygxEiVq_jyUd7HrE8,2240
|
27
|
+
robotcode_robot-0.83.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
28
|
+
robotcode_robot-0.83.0.dist-info/licenses/LICENSE.txt,sha256=B05uMshqTA74s-0ltyHKI6yoPfJ3zYgQbvcXfDVGFf8,10280
|
29
|
+
robotcode_robot-0.83.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|