Skip to content

Commit

Permalink
fix: try connection.toml with double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zane Clark committed Nov 15, 2024
1 parent 18ebe92 commit 5a6cec0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/master-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ jobs:
run: |
touch ./connections.toml
echo [default] >> ./connections.toml
echo account = "${SNOWFLAKE_ACCOUNT}" >> ./connections.toml
echo user = "${SNOWFLAKE_USER}" >> ./connections.toml
echo role = "${SNOWFLAKE_ROLE}" >> ./connections.toml
echo warehouse = "${SNOWFLAKE_WAREHOUSE}" >> ./connections.toml
echo database = "${SNOWFLAKE_DATABASE}" >> ./connections.toml
echo schema = "${MY_TARGET_SCHEMA}" >> ./connections.toml
echo password = "${SNOWFLAKE_PASSWORD}" >> ./connections.toml
echo account = ""${SNOWFLAKE_ACCOUNT}" ">> ./connections.toml
echo user = ""${SNOWFLAKE_USER}"" >> ./connections.toml
echo role = ""${SNOWFLAKE_ROLE}"" >> ./connections.toml
echo warehouse = ""${SNOWFLAKE_WAREHOUSE}"" >> ./connections.toml
echo database = ""${SNOWFLAKE_DATABASE}"" >> ./connections.toml
echo schema = ""${MY_TARGET_SCHEMA}"" >> ./connections.toml
echo password = ""${SNOWFLAKE_PASSWORD}"" >> ./connections.toml
echo "cat connections.toml"
cat ./connections.toml
- name: Test with pytest
Expand Down

0 comments on commit 5a6cec0

Please sign in to comment.