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):
149149
150150LIST_WORKSPACE_TESTS_FEATURE = "sqlmesh/list_workspace_tests"
151151
152+
152153class ListWorkspaceTestsRequest (CustomMethodRequestBaseClass ):
153154 """
154155 Request to list all tests in the current project.
155156 """
157+
156158 pass
157159
160+
158161GET_ENVIRONMENTS_FEATURE = "sqlmesh/get_environments"
159162
163+
160164class GetEnvironmentsRequest (CustomMethodRequestBaseClass ):
161165 """
162166 Request to get all environments in the current project.
@@ -202,6 +206,7 @@ class RunTestResponse(CustomMethodResponseBaseClass):
202206 success : bool
203207 error_message : t .Optional [str ] = None
204208
209+
205210class EnvironmentInfo (PydanticModel ):
206211 """
207212 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) {
153153 ) ,
154154 )
155155
156-
157156 // Register the table diff command
158157 context . subscriptions . push (
159158 vscode . commands . registerCommand (
You can’t perform that action at this time.
0 commit comments