File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -149,14 +149,18 @@ class FormatProjectResponse(CustomMethodResponseBaseClass):
149
149
150
150
LIST_WORKSPACE_TESTS_FEATURE = "sqlmesh/list_workspace_tests"
151
151
152
+
152
153
class ListWorkspaceTestsRequest (CustomMethodRequestBaseClass ):
153
154
"""
154
155
Request to list all tests in the current project.
155
156
"""
157
+
156
158
pass
157
159
160
+
158
161
GET_ENVIRONMENTS_FEATURE = "sqlmesh/get_environments"
159
162
163
+
160
164
class GetEnvironmentsRequest (CustomMethodRequestBaseClass ):
161
165
"""
162
166
Request to get all environments in the current project.
@@ -202,6 +206,7 @@ class RunTestResponse(CustomMethodResponseBaseClass):
202
206
success : bool
203
207
error_message : t .Optional [str ] = None
204
208
209
+
205
210
class EnvironmentInfo (PydanticModel ):
206
211
"""
207
212
Information about an environment.
Original file line number Diff line number Diff line change @@ -153,7 +153,6 @@ export async function activate(context: vscode.ExtensionContext) {
153
153
) ,
154
154
)
155
155
156
-
157
156
// Register the table diff command
158
157
context . subscriptions . push (
159
158
vscode . commands . registerCommand (
You can’t perform that action at this time.
0 commit comments