We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbdcace commit 55ec667Copy full SHA for 55ec667
.github/workflows/test-warehouse.yml
@@ -216,9 +216,9 @@ jobs:
216
# using ".[vertica]" would re-resolve dbt-vertica's deps and downgrade
217
# dbt-core to ~=1.8. Install elementary without the adapter extra.
218
if [ "${{ inputs.warehouse-type }}" = "vertica" ]; then
219
- pip install "."
+ pip install ".[s3,slack]"
220
else
221
- pip install ".[${{ (inputs.warehouse-type == 'databricks_catalog' && 'databricks') || inputs.warehouse-type }}]"
+ pip install ".[${{ (inputs.warehouse-type == 'databricks_catalog' && 'databricks') || inputs.warehouse-type }},s3,slack]"
222
fi
223
224
- name: Write dbt profiles
0 commit comments