Skip to content

Commit c5c1562

Browse files
authored
Chore: fix snowflake cloud engine test (#4438)
1 parent 6c38171 commit c5c1562

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.circleci/manage-test-db.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function_exists() {
2525
# Snowflake
2626
snowflake_init() {
2727
echo "Installing Snowflake CLI"
28-
pip install snowflake-cli-labs
28+
pip install "snowflake-cli-labs<3.8.0"
2929
}
3030

3131
snowflake_up() {

vscode/extension/src/utilities/common/python.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ export async function getInterpreterDetails(
8484
path: [environment?.executable.uri.fsPath],
8585
resource,
8686
isVirtualEnvironment: isVirtualEnv,
87-
binPath: binPath ? path.join(binPath, IS_WINDOWS ? 'Scripts' : 'bin') : undefined,
87+
binPath: binPath
88+
? path.join(binPath, IS_WINDOWS ? 'Scripts' : 'bin')
89+
: undefined,
8890
}
8991
}
9092
return { path: undefined, resource }

0 commit comments

Comments
 (0)