From 91f312c6e342ab4c8557b0da6aeaa87484995ab2 Mon Sep 17 00:00:00 2001 From: marcosmarxm Date: Thu, 25 Jul 2024 18:00:12 -0300 Subject: [PATCH] enable shell --- .github/workflows/run_integration_tests.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml index 779726bc..69d22ad7 100644 --- a/.github/workflows/run_integration_tests.yml +++ b/.github/workflows/run_integration_tests.yml @@ -22,7 +22,9 @@ jobs: uses: actions/checkout@v2 - name: Install the project dependencies - run: poetry install + run: | + poetry install + poetry shell - name: Ensure .dbt directory exists run: mkdir -p ~/.dbt @@ -34,11 +36,6 @@ jobs: id: get_connector run: echo "::set-output name=connector::source_zendesk_support" - - name: Get what connector we are testing - run: | - pwd - ls - - name: Run Integration Tests for Postgres working-directory: connectors/${{ steps.get_connector.outputs.connector }}/integration_tests run: dbt run --target postgres