Skip to content

Commit

Permalink
mark script as executable
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Jun 14, 2024
1 parent 43b5342 commit 3daa2d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Empty file modified .github/scripts/psycopg2-check.sh
100644 → 100755
Empty file.
8 changes: 4 additions & 4 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,25 +118,25 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: "Test psycopg2 name - default"
run: ./.github/scripts/psycopg2-check.sh
run: .github/scripts/psycopg2-check.sh
env:
PSYCOPG2_EXPECTED_NAME: psycopg2-binary

- name: "Test psycopg2 name - invalid override"
run: ./.github/scripts/psycopg2-check.sh
run: .github/scripts/psycopg2-check.sh
env:
DBT_PSYCOPG2_NAME: rubber-baby-buggy-bumpers
PSYCOPG2_EXPECTED_NAME: psycopg2-binary

- name: "Test psycopg2 name - override"
run: ./.github/scripts/psycopg2-check.sh
run: .github/scripts/psycopg2-check.sh
env:
DBT_PSYCOPG2_NAME: psycopg2
PSYCOPG2_EXPECTED_NAME: psycopg2-binary # we have not implemented the hook yet, so this doesn't work

- name: "Test psycopg2 name - manual override"
# verify that the workaround documented in the `README.md` continues to work
run: ./.github/scripts/psycopg2-check.sh
run: .github/scripts/psycopg2-check.sh
env:
PSYCOPG2_WORKAROUND: true
PSYCOPG2_EXPECTED_NAME: psycopg2

0 comments on commit 3daa2d0

Please sign in to comment.