From 886fd230341495bf39741b2d00fb67b96fbddb09 Mon Sep 17 00:00:00 2001 From: Laura Amaral Date: Tue, 26 Mar 2024 09:04:39 -0300 Subject: [PATCH] fix: run python --- .github/workflows/test_dbt_model.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_dbt_model.yaml b/.github/workflows/test_dbt_model.yaml index 2dccf8bc..5111e0d1 100644 --- a/.github/workflows/test_dbt_model.yaml +++ b/.github/workflows/test_dbt_model.yaml @@ -31,4 +31,4 @@ jobs: run: poetry install --only=dev - name: Run script to test DBT model run: |- - python .github/workflows/scripts/table_test.py --modified-files ${{ steps.changed-files.outputs.all_modified_files }} --graphql-url ${{ secrets.BACKEND_GRAPHQL_URL }} --prefect-backend-token ${{ secrets.PREFECT_BACKEND_TOKEN }} + poetry run python .github/workflows/scripts/table_test.py --modified-files ${{ steps.changed-files.outputs.all_modified_files }} --graphql-url ${{ secrets.BACKEND_GRAPHQL_URL }} --prefect-backend-token ${{ secrets.PREFECT_BACKEND_TOKEN }}