File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ gpg --quiet --batch --yes --decrypt --passphrase="${PARAMETERS_SECRET}" ${PARAMS
2222# Decrypt private key file
2323gpg --quiet --batch --yes --decrypt --passphrase=" ${PARAMETERS_SECRET} " " ${CONNECTOR_DIR} /.github/workflows/parameters/public/rsa_keys/rsa_key_python_${cloud_provider} .p8.gpg" > " test/rsa_key_python_${cloud_provider} .p8"
2424
25+ # Remove CRL cache directory if it exists to avoid permission issues (if it was created by older version of the connector)
26+ rm -rf ~ /Library/Caches/Snowflake/crls
27+
2528rm -rf venv
2629python3.12 -m venv venv
2730. venv/bin/activate
Original file line number Diff line number Diff line change @@ -177,9 +177,7 @@ commands = pre-commit run --all-files
177177
178178[testenv:dependency]
179179description = Check if there is conflicting dependency
180- ; TODO: remove pip<25.3 once it does not break Check dependency job on Github Action (SNOW-2658105)
181180deps =
182- pip<25.3
183181 pip-tools
184182skip_install = True
185183commands = pip-compile setup.py
You can’t perform that action at this time.
0 commit comments