Skip to content

Commit

Permalink
fixed syntac error in _integration-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
VanTudor committed Jan 17, 2025
1 parent 2bc8856 commit c1c0d5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ env:

jobs:
integration-tests-athena:
name: integration-tests-athena-${{ inputs.is-flaky-test-run && "flaky" || "not-flaky" }}
name: integration-tests-athena-${{ inputs.is-flaky-test-run && 'flaky' || 'not-flaky' }}
if: ${{ inputs.package == 'dbt-athena' || inputs.package == 'dbt-athena-community' }}
runs-on: ${{ inputs.os }}
environment:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/${{ secrets.ASSUMABLE_ROLE_NAME }}
aws-region: ${{ vars.DBT_TEST_ATHENA_REGION_NAME }}
# run flaky tests command if is-flaky-test-run flag is true. Otherwise, run the other tests
- run: ${{ inputs.is-flaky-test-run && "hatch run integration-tests -m flaky -n1 --ddtrace" || hatch run integration-tests -m "not flaky" }}
- run: ${{ inputs.is-flaky-test-run && 'hatch run integration-tests -m flaky -n1 --ddtrace' || 'hatch run integration-tests -m "not flaky"' }}
working-directory: ./${{ inputs.package }}

integration-tests-bigquery:
Expand Down

0 comments on commit c1c0d5a

Please sign in to comment.