From 45de2e87618d90ade0d0a03381e9f7caee4bacad Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Sun, 7 Nov 2021 17:28:35 +0100 Subject: [PATCH] Ignore 'dbt' source distribution when testing --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bc71f673f4f..3246dbfa335 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: |