robotcode 0.83.3__tar.gz → 0.85.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.
@@ -293,3 +293,6 @@ report.html
293
293
  .ruff_cache/
294
294
 
295
295
  bundled/libs
296
+
297
+ # robotframework
298
+ results/
@@ -2,6 +2,268 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
4
4
 
5
+ ## [0.85.0](https://github.com/robotcodedev/robotcode/compare/v0.84.0..v0.85.0) - 2024-08-18
6
+
7
+ ### Bug Fixes
8
+
9
+ - **langserver:** Corrected coloring of test case/keyword names if names contains line continuations `...` ([a848a93](https://github.com/robotcodedev/robotcode/commit/a848a935567a41804fa20879a5da6016b5a68f0d))
10
+
11
+
12
+ ### Documentation
13
+
14
+ - Some reorganizations ([a49829b](https://github.com/robotcodedev/robotcode/commit/a49829b80b2e0f35eb4c70772bcff0af720fffeb))
15
+ - Some more restrucuting ([5b2752f](https://github.com/robotcodedev/robotcode/commit/5b2752f66f2791da51e5d2cc7b063ec8b50fd247))
16
+ - Correct RF versions in README ([da0af7b](https://github.com/robotcodedev/robotcode/commit/da0af7b82064304c7ed7c1290bb081eb4b38dde6))
17
+ - "Get Started" improved ([c9954ad](https://github.com/robotcodedev/robotcode/commit/c9954ad394069f71eeac23c4b3453588227834ae))
18
+
19
+
20
+ ### Features
21
+
22
+ - **langserver:** Send full completion info if language client does not support `completionItem/resolve` ([4cf0127](https://github.com/robotcodedev/robotcode/commit/4cf01274e70070b3c9eb9e630afe08be57035e37))
23
+
24
+
25
+ ## [0.84.0](https://github.com/robotcodedev/robotcode/compare/v0.83.3..v0.84.0) - 2024-08-08
26
+
27
+ ### Bug Fixes
28
+
29
+ - **debugger:** Corrected handling of local variables in variables inspector ([12ecdd4](https://github.com/robotcodedev/robotcode/commit/12ecdd43376484a40b6cdeb2bca752bc09178fad))
30
+ - **debugger:** Corrected start debuggin in internalConsole ([b5124c8](https://github.com/robotcodedev/robotcode/commit/b5124c87265aac26f30ec535ec72770bf258cfbd))
31
+ - **debugger:** Corrected start debuggin in internalConsole ([f3fbf20](https://github.com/robotcodedev/robotcode/commit/f3fbf20d01d75264d86c0af4575e98b0cfa7ec5b))
32
+ - **robot:** Use casefold for normalizing and remove some local imports in VariableMatcher ([04e12a7](https://github.com/robotcodedev/robotcode/commit/04e12a7ee262177f5bede595baa14e283c3ef4e7))
33
+ - **vscode:** Remove `attachPython` from default `launch.json` config ([217653b](https://github.com/robotcodedev/robotcode/commit/217653b6a6c3e78dbbead659880c12c1d5fb4a54))
34
+ - **vscode:** Only test cases are reported as queued, started and completed ([1d01f43](https://github.com/robotcodedev/robotcode/commit/1d01f43687a1b2f8428982cadcee7e72e1764738))
35
+
36
+ this corrects the number of successful/executed test cases in the upper area of the test explorer
37
+
38
+ - **vscode:** Remove `attachPython` from default `launch.json` config ([8052f8d](https://github.com/robotcodedev/robotcode/commit/8052f8dfc4e83a8d7e26ef8049c3631881e0dd34))
39
+ - **vscode:** Only test cases are reported as queued, started and completed ([f68b8e3](https://github.com/robotcodedev/robotcode/commit/f68b8e34161b4ec977fcae04d891399a53f951fc))
40
+
41
+ this corrects the number of successful/executed test cases in the upper area of the test explorer
42
+
43
+
44
+
45
+ ### Documentation
46
+
47
+ - **quickstart:** Add quickstart documentation page ([1fdb966](https://github.com/robotcodedev/robotcode/commit/1fdb966038595b79b7081ee94a735a8d76f3098e))
48
+ - **quickstart:** Improve quickstart documentation ([a5dd60a](https://github.com/robotcodedev/robotcode/commit/a5dd60a0d1da7fd85cb781eaaaf530e5d8f30e8a))
49
+ - Updated config page ([b230689](https://github.com/robotcodedev/robotcode/commit/b23068989da3aaff5ed8dce3b3c6653dceb88eb5))
50
+ - Fix some formatting and spelling things ([99d18fe](https://github.com/robotcodedev/robotcode/commit/99d18fe2ffa3f754b125b7ae5f501ae90144c561))
51
+
52
+
53
+ ### Features
54
+
55
+ - **debugger:** Added support for disabling the hiding of debugger threads/tasks. ([049c905](https://github.com/robotcodedev/robotcode/commit/049c90517d36035e3bc86d0271e219e744c5dc7c))
56
+
57
+ By setting the ROBOTCODE_DISABLE_HIDDEN_TASKS environment variable to a value not equal to 0, the Robot Code debugger will not be hidden from the Debugpy debugger, allowing you to debug the Robot Code debugger itself.
58
+
59
+ - Diagnostics modifiers ([d1e5f3f](https://github.com/robotcodedev/robotcode/commit/d1e5f3f5781ba50416fdd3e39c8416978dffc5c7))
60
+
61
+
62
+ Implement functionality to configure diagnostic error messages during source code analysis. Lines in the code with the `# robotcode:` marker are now interpreted as modifiers. The full structure of a modifier is `# robotcode: <action>[code(,code)*]*`.
63
+
64
+ **Allowed actions:**
65
+
66
+ - `ignore`: Ignore specified diagnostic codes.
67
+ - `hint`: Treat specified diagnostic codes as hints.
68
+ - `warn`: Treat specified diagnostic codes as warnings.
69
+ - `error`: Treat specified diagnostic codes as errors.
70
+ - `reset`: Reset the diagnostic codes to their default state.
71
+
72
+ **This implementation allows for the following:**
73
+
74
+ - Custom actions to be performed on specified diagnostic codes.
75
+ - Enhanced control over which diagnostic messages are shown, ignored, or modified.
76
+ - Flexibility in managing diagnostic outputs for better code quality and debugging experience.
77
+
78
+ **Usage details:**
79
+
80
+ - A diagnostic modifier can be placed at the end of a line. It modifies only the errors occurring in that line.
81
+ - A modifier can be placed at the very beginning of a line. It applies from that line to the end of the file.
82
+ - If a modifier is within a block (e.g., Testcase, Keyword, IF, FOR) and is indented, it applies only to the current block.
83
+
84
+ **Example usage:**
85
+
86
+ - `# robotcode: ignore[variable-not-found, keyword-not-found]` - Ignores the errors for variable not found and keyword not found.
87
+ - `# robotcode: hint[MultipleKeywords]` - Treats the MultipleKeywords error as a hint.
88
+ - `# robotcode: warn[variable-not-found]` - Treats the variable-not-found error as a warning.
89
+ - `# robotcode: error[keyword-not-found]` - Treats the keyword-not-found error as an error.
90
+ - `# robotcode: reset[MultipleKeywords]` - Resets the MultipleKeywords error to its default state.
91
+ - `# robotcode: ignore` - Ignores all diagnostic messages .
92
+ - `# robotcode: reset` - Resets all diagnostic messages to their default.
93
+
94
+ **Example scenarios:**
95
+
96
+ *Modifier at the end of a line:*
97
+
98
+ ```robot
99
+ *** Keywords ***
100
+ Keyword Name
101
+ Log ${arg1} # robotcode: ignore[variable-not-found]
102
+ ```
103
+ This modifier will ignore the `variable-not-found` error for the `Log` keyword in this line only.
104
+
105
+ *Modifier at the beginning of a line:*
106
+
107
+ ```robot
108
+ # robotcode: ignore[keyword-not-found]
109
+ *** Test Cases ***
110
+ Example Test
111
+ Log Hello
112
+ Some Undefined Keyword
113
+ ```
114
+ This modifier will ignore `keyword-not-found` errors from the point it is declared to the end of the file.
115
+
116
+ *Modifier within a block:*
117
+
118
+ ```robot
119
+ *** Keywords ***
120
+ Example Keyword
121
+ # robotcode: warn[variable-not-found]
122
+ Log ${arg1}
123
+ Another Keyword
124
+ ```
125
+ This modifier will treat `variable-not-found` errors as warnings within the `Example Keyword` block.
126
+
127
+ *Modifier using reset:*
128
+
129
+ ```robot
130
+ # robotcode: error[variable-not-found]
131
+ *** Test Cases ***
132
+ Example Test
133
+ Log ${undefined_variable}
134
+ # robotcode: reset[variable-not-found]
135
+ Log ${undefined_variable}
136
+ ```
137
+ In this example, the `variable-not-found` error is treated as an error until it is reset in the `Another Test` block, where it will return to its default state.
138
+
139
+ *Modifier to ignore all diagnostic messages:*
140
+
141
+ ```robot
142
+ # robotcode: ignore
143
+ *** Test Cases ***
144
+ Example Test
145
+ Log ${undefined_variable}
146
+ Some Undefined Keyword
147
+ ```
148
+ This modifier will ignore all diagnostic messages from the point it is declared to the end of the file.
149
+
150
+ *Modifier to reset all diagnostic messages:*
151
+
152
+ ```robot
153
+ # robotcode: ignore
154
+ *** Test Cases ***
155
+ Example Test
156
+ Log ${undefined_variable}
157
+ # robotcode: reset
158
+ Another Test
159
+ Some Undefined Keyword
160
+ ```
161
+ In this example, all diagnostic messages are ignored until the `reset` modifier, which returns all messages to their default state from that point onward.
162
+ - Diagnostics modifiers ([223ec13](https://github.com/robotcodedev/robotcode/commit/223ec134a9a947db50aebba0d10ad290ab3bffb5))
163
+
164
+
165
+ Implement functionality to configure diagnostic error messages during source code analysis. Lines in the code with the `# robotcode:` marker are now interpreted as modifiers. The full structure of a modifier is `# robotcode: <action>[code(,code)*]*`.
166
+
167
+ **Allowed actions:**
168
+
169
+ - `ignore`: Ignore specified diagnostic codes.
170
+ - `hint`: Treat specified diagnostic codes as hints.
171
+ - `warn`: Treat specified diagnostic codes as warnings.
172
+ - `error`: Treat specified diagnostic codes as errors.
173
+ - `reset`: Reset the diagnostic codes to their default state.
174
+
175
+ **This implementation allows for the following:**
176
+
177
+ - Custom actions to be performed on specified diagnostic codes.
178
+ - Enhanced control over which diagnostic messages are shown, ignored, or modified.
179
+ - Flexibility in managing diagnostic outputs for better code quality and debugging experience.
180
+
181
+ **Usage details:**
182
+
183
+ - A diagnostic modifier can be placed at the end of a line. It modifies only the errors occurring in that line.
184
+ - A modifier can be placed at the very beginning of a line. It applies from that line to the end of the file.
185
+ - If a modifier is within a block (e.g., Testcase, Keyword, IF, FOR) and is indented, it applies only to the current block.
186
+
187
+ **Example usage:**
188
+
189
+ - `# robotcode: ignore[variable-not-found, keyword-not-found]` - Ignores the errors for variable not found and keyword not found.
190
+ - `# robotcode: hint[MultipleKeywords]` - Treats the MultipleKeywords error as a hint.
191
+ - `# robotcode: warn[variable-not-found]` - Treats the variable-not-found error as a warning.
192
+ - `# robotcode: error[keyword-not-found]` - Treats the keyword-not-found error as an error.
193
+ - `# robotcode: reset[MultipleKeywords]` - Resets the MultipleKeywords error to its default state.
194
+ - `# robotcode: ignore` - Ignores all diagnostic messages .
195
+ - `# robotcode: reset` - Resets all diagnostic messages to their default.
196
+
197
+ **Example scenarios:**
198
+
199
+ *Modifier at the end of a line:*
200
+
201
+ ```robot
202
+ *** Keywords ***
203
+ Keyword Name
204
+ Log ${arg1} # robotcode: ignore[variable-not-found]
205
+ ```
206
+ This modifier will ignore the `variable-not-found` error for the `Log` keyword in this line only.
207
+
208
+ *Modifier at the beginning of a line:*
209
+
210
+ ```robot
211
+ # robotcode: ignore[keyword-not-found]
212
+ *** Test Cases ***
213
+ Example Test
214
+ Log Hello
215
+ Some Undefined Keyword
216
+ ```
217
+ This modifier will ignore `keyword-not-found` errors from the point it is declared to the end of the file.
218
+
219
+ *Modifier within a block:*
220
+
221
+ ```robot
222
+ *** Keywords ***
223
+ Example Keyword
224
+ # robotcode: warn[variable-not-found]
225
+ Log ${arg1}
226
+ Another Keyword
227
+ ```
228
+ This modifier will treat `variable-not-found` errors as warnings within the `Example Keyword` block.
229
+
230
+ *Modifier using reset:*
231
+
232
+ ```robot
233
+ # robotcode: error[variable-not-found]
234
+ *** Test Cases ***
235
+ Example Test
236
+ Log ${undefined_variable}
237
+ # robotcode: reset[variable-not-found]
238
+ Log ${undefined_variable}
239
+ ```
240
+ In this example, the `variable-not-found` error is treated as an error until it is reset in the `Another Test` block, where it will return to its default state.
241
+
242
+ *Modifier to ignore all diagnostic messages:*
243
+
244
+ ```robot
245
+ # robotcode: ignore
246
+ *** Test Cases ***
247
+ Example Test
248
+ Log ${undefined_variable}
249
+ Some Undefined Keyword
250
+ ```
251
+ This modifier will ignore all diagnostic messages from the point it is declared to the end of the file.
252
+
253
+ *Modifier to reset all diagnostic messages:*
254
+
255
+ ```robot
256
+ # robotcode: ignore
257
+ *** Test Cases ***
258
+ Example Test
259
+ Log ${undefined_variable}
260
+ # robotcode: reset
261
+ Another Test
262
+ Some Undefined Keyword
263
+ ```
264
+ In this example, all diagnostic messages are ignored until the `reset` modifier, which returns all messages to their default state from that point onward.
265
+
266
+
5
267
  ## [0.83.3](https://github.com/robotcodedev/robotcode/compare/v0.83.2..v0.83.3) - 2024-06-20
6
268
 
7
269
  ### Bug Fixes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: robotcode
3
- Version: 0.83.3
3
+ Version: 0.85.0
4
4
  Summary: Command line interface for RobotCode
5
5
  Project-URL: Homepage, https://robotcode.io
6
6
  Project-URL: Donate, https://opencollective.com/robotcode
@@ -33,33 +33,33 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
33
33
  Classifier: Topic :: Utilities
34
34
  Classifier: Typing :: Typed
35
35
  Requires-Python: >=3.8
36
- Requires-Dist: robotcode-core==0.83.3
37
- Requires-Dist: robotcode-plugin==0.83.3
38
- Requires-Dist: robotcode-robot==0.83.3
36
+ Requires-Dist: robotcode-core==0.85.0
37
+ Requires-Dist: robotcode-plugin==0.85.0
38
+ Requires-Dist: robotcode-robot==0.85.0
39
39
  Provides-Extra: all
40
40
  Requires-Dist: docutils; extra == 'all'
41
41
  Requires-Dist: pyyaml>=5.4; extra == 'all'
42
42
  Requires-Dist: rich; extra == 'all'
43
- Requires-Dist: robotcode-analyze==0.83.3; extra == 'all'
44
- Requires-Dist: robotcode-debugger==0.83.3; extra == 'all'
45
- Requires-Dist: robotcode-language-server==0.83.3; extra == 'all'
46
- Requires-Dist: robotcode-runner==0.83.3; extra == 'all'
43
+ Requires-Dist: robotcode-analyze==0.85.0; extra == 'all'
44
+ Requires-Dist: robotcode-debugger==0.85.0; extra == 'all'
45
+ Requires-Dist: robotcode-language-server==0.85.0; extra == 'all'
46
+ Requires-Dist: robotcode-runner==0.85.0; extra == 'all'
47
47
  Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
48
48
  Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
49
49
  Provides-Extra: analyze
50
- Requires-Dist: robotcode-analyze==0.83.3; extra == 'analyze'
50
+ Requires-Dist: robotcode-analyze==0.85.0; extra == 'analyze'
51
51
  Provides-Extra: colored
52
52
  Requires-Dist: rich; extra == 'colored'
53
53
  Provides-Extra: debugger
54
- Requires-Dist: robotcode-debugger==0.83.3; extra == 'debugger'
54
+ Requires-Dist: robotcode-debugger==0.85.0; extra == 'debugger'
55
55
  Provides-Extra: languageserver
56
- Requires-Dist: robotcode-language-server==0.83.3; extra == 'languageserver'
56
+ Requires-Dist: robotcode-language-server==0.85.0; extra == 'languageserver'
57
57
  Provides-Extra: lint
58
58
  Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
59
59
  Provides-Extra: rest
60
60
  Requires-Dist: docutils; extra == 'rest'
61
61
  Provides-Extra: runner
62
- Requires-Dist: robotcode-runner==0.83.3; extra == 'runner'
62
+ Requires-Dist: robotcode-runner==0.85.0; extra == 'runner'
63
63
  Provides-Extra: tidy
64
64
  Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
65
65
  Provides-Extra: yaml
@@ -87,7 +87,7 @@ to [Visual Studio Code](https://code.visualstudio.com/), including [features](#f
87
87
  1. [Install a supported version of Python on your system](https://code.visualstudio.com/docs/python/python-tutorial#_prerequisites)
88
88
  (note: only Python 3.8 and above are supported)
89
89
 
90
- 2. [Install a supported version of RobotFramwork on your system](https://github.com/robotframework/robotframework/blob/master/INSTALL.rst) (note: only RobotFramework 4.0 and above are supported)
90
+ 2. [Install a supported version of RobotFramwork on your system](https://github.com/robotframework/robotframework/blob/master/INSTALL.rst) (note: only RobotFramework 4.1 and above are supported)
91
91
 
92
92
  3. [Install the RobotCode extension for Visual Studio Code](https://code.visualstudio.com/docs/editor/extension-gallery).
93
93
  4. Open or create a robot file and start coding! 😉
@@ -105,17 +105,21 @@ to [Visual Studio Code](https://code.visualstudio.com/), including [features](#f
105
105
  With RobotCode you can edit your code with auto-completion, code navigation, syntax checking and many more.
106
106
  Here is a list of Features:
107
107
 
108
- - [Autocomplete and IntelliSense](#Autocomplete-and-IntelliSense)
109
- - [Code Navigation](#code-navigation)
110
- - [Diagnostics and Linting](#diagnostics-and-linting)
111
- - [Code Formatting](#code-formatting)
112
- - [Running and Debugging](#running-and-debugging)
113
- - [Multi-root Workspace folders](#multi-root-workspace-folders)
114
- - Find implementations and references of keywords, variables, libraries, resource and variable files
115
- - Show codelenses for keyword definitions
116
- - Test Explorer
117
- - Refactorings
118
- - renaming keywords, variables, tags
108
+ - [RobotCode - Language support for Robot Framework for Visual Studio Code](#robotcode---language-support-for-robot-framework-for-visual-studio-code)
109
+ - [Quick start](#quick-start)
110
+ - [Requirements](#requirements)
111
+ - [Features](#features)
112
+ - [Autocomplete and IntelliSense](#autocomplete-and-intellisense)
113
+ - [Code Navigation](#code-navigation)
114
+ - [Diagnostics and Linting](#diagnostics-and-linting)
115
+ - [Code Formatting](#code-formatting)
116
+ - [Running and Debugging](#running-and-debugging)
117
+ - [Multi-root Workspace folders](#multi-root-workspace-folders)
118
+ - [Installed extensions](#installed-extensions)
119
+ - [Setting up your environment](#setting-up-your-environment)
120
+ - [With pipenv](#with-pipenv)
121
+ - [Customization](#customization)
122
+ - [Editor Style](#editor-style)
119
123
 
120
124
  ### Autocomplete and IntelliSense
121
125
 
@@ -19,7 +19,7 @@ to [Visual Studio Code](https://code.visualstudio.com/), including [features](#f
19
19
  1. [Install a supported version of Python on your system](https://code.visualstudio.com/docs/python/python-tutorial#_prerequisites)
20
20
  (note: only Python 3.8 and above are supported)
21
21
 
22
- 2. [Install a supported version of RobotFramwork on your system](https://github.com/robotframework/robotframework/blob/master/INSTALL.rst) (note: only RobotFramework 4.0 and above are supported)
22
+ 2. [Install a supported version of RobotFramwork on your system](https://github.com/robotframework/robotframework/blob/master/INSTALL.rst) (note: only RobotFramework 4.1 and above are supported)
23
23
 
24
24
  3. [Install the RobotCode extension for Visual Studio Code](https://code.visualstudio.com/docs/editor/extension-gallery).
25
25
  4. Open or create a robot file and start coding! 😉
@@ -37,17 +37,21 @@ to [Visual Studio Code](https://code.visualstudio.com/), including [features](#f
37
37
  With RobotCode you can edit your code with auto-completion, code navigation, syntax checking and many more.
38
38
  Here is a list of Features:
39
39
 
40
- - [Autocomplete and IntelliSense](#Autocomplete-and-IntelliSense)
41
- - [Code Navigation](#code-navigation)
42
- - [Diagnostics and Linting](#diagnostics-and-linting)
43
- - [Code Formatting](#code-formatting)
44
- - [Running and Debugging](#running-and-debugging)
45
- - [Multi-root Workspace folders](#multi-root-workspace-folders)
46
- - Find implementations and references of keywords, variables, libraries, resource and variable files
47
- - Show codelenses for keyword definitions
48
- - Test Explorer
49
- - Refactorings
50
- - renaming keywords, variables, tags
40
+ - [RobotCode - Language support for Robot Framework for Visual Studio Code](#robotcode---language-support-for-robot-framework-for-visual-studio-code)
41
+ - [Quick start](#quick-start)
42
+ - [Requirements](#requirements)
43
+ - [Features](#features)
44
+ - [Autocomplete and IntelliSense](#autocomplete-and-intellisense)
45
+ - [Code Navigation](#code-navigation)
46
+ - [Diagnostics and Linting](#diagnostics-and-linting)
47
+ - [Code Formatting](#code-formatting)
48
+ - [Running and Debugging](#running-and-debugging)
49
+ - [Multi-root Workspace folders](#multi-root-workspace-folders)
50
+ - [Installed extensions](#installed-extensions)
51
+ - [Setting up your environment](#setting-up-your-environment)
52
+ - [With pipenv](#with-pipenv)
53
+ - [Customization](#customization)
54
+ - [Editor Style](#editor-style)
51
55
 
52
56
  ### Autocomplete and IntelliSense
53
57
 
@@ -50,9 +50,9 @@ classifiers = [
50
50
  ]
51
51
  requires-python = ">=3.8"
52
52
  dependencies = [
53
- "robotcode-core==0.83.3",
54
- "robotcode-plugin==0.83.3",
55
- "robotcode-robot==0.83.3",
53
+ "robotcode-core==0.85.0",
54
+ "robotcode-plugin==0.85.0",
55
+ "robotcode-robot==0.85.0",
56
56
  ]
57
57
  dynamic = ["version"]
58
58
 
@@ -70,20 +70,20 @@ robotcode = "robotcode.cli.__main__:main"
70
70
 
71
71
 
72
72
  [project.optional-dependencies]
73
- debugger = ["robotcode-debugger==0.83.3"]
74
- languageserver = ["robotcode-language-server==0.83.3"]
75
- runner = ["robotcode-runner==0.83.3"]
76
- analyze = ["robotcode-analyze==0.83.3"]
73
+ debugger = ["robotcode-debugger==0.85.0"]
74
+ languageserver = ["robotcode-language-server==0.85.0"]
75
+ runner = ["robotcode-runner==0.85.0"]
76
+ analyze = ["robotcode-analyze==0.85.0"]
77
77
  yaml = ["PyYAML>=5.4"]
78
78
  lint = ["robotframework-robocop>=2.0.0"]
79
79
  tidy = ["robotframework-tidy>=2.0.0"]
80
80
  rest = ["docutils"]
81
81
  colored = ["rich"]
82
82
  all = [
83
- "robotcode-debugger==0.83.3",
84
- "robotcode-language-server==0.83.3",
85
- "robotcode-runner==0.83.3",
86
- "robotcode-analyze==0.83.3",
83
+ "robotcode-debugger==0.85.0",
84
+ "robotcode-language-server==0.85.0",
85
+ "robotcode-runner==0.85.0",
86
+ "robotcode-analyze==0.85.0",
87
87
  "PyYAML>=5.4",
88
88
  "robotframework-robocop>=2.0.0",
89
89
  "robotframework-tidy>=2.0.0",
@@ -137,7 +137,7 @@ extend-exclude = '''
137
137
 
138
138
  [tool.pytest.ini_options]
139
139
  minversion = "6.0"
140
- addopts = "-ra -vv -rf --ignore=bundled --ignore=.hatch --reruns 5 --reruns-delay 1"
140
+ addopts = "-ra -vv -rf --ignore=bundled --ignore=.hatch"
141
141
  filterwarnings = "ignore:.*Using or importing the ABCs from 'collections' instead of from 'collections.abc'.*:DeprecationWarning"
142
142
  testpaths = ["tests"]
143
143
  junit_suite_name = "robotcode"
@@ -0,0 +1 @@
1
+ __version__ = "0.85.0"
@@ -1 +0,0 @@
1
- __version__ = "0.83.3"
File without changes
File without changes