Skip to content

Commit e6d5d78

Browse files
committed
Chore: fix snowflake cloud engine test
1 parent 6c38171 commit e6d5d78

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.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)