Skip to content

Commit 775207e

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

4 files changed

Lines changed: 33 additions & 3 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() {

package-lock.json

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"lint:fix": "pnpm run fmt && pnpm run -r lint:fix"
88
},
99
"devDependencies": {
10-
"prettier": "^3.5.2"
10+
"prettier": "^3.5.3"
1111
}
1212
}

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)