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 c1aacf6 commit c4dfa4e
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 c4dfa4e

Please sign in to comment.