Skip to content

Commit

Permalink
Ignore 'dbt' source distribution when testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jtcohen6 committed Nov 7, 2021
1 parent 66be884 commit 45de2e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,9 @@ jobs:
dbt --version
- name: Install source distributions
# ignore dbt-1.0.0, which intentionally raises an error when installed from source
run: |
find ./dist/*.gz -maxdepth 1 -type f | xargs pip install --force-reinstall --find-links=dist/
find ./dist/dbt-[a-z]*.gz -maxdepth 1 -type f | xargs pip install --force-reinstall --find-links=dist/
- name: Check source distributions
run: |
Expand Down

0 comments on commit 45de2e8

Please sign in to comment.