Skip to content

Commit

Permalink
syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Apr 12, 2024
1 parent 264ae24 commit afcffb7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ jobs:
name: "Test psycopg2 build version"
runs-on: ${{ matrix.scenario.platform }}
strategy:
fail-fast: false
matrix:
scenario:
- {platform: ubuntu-latest, psycopg2-name: pscyopg2}
Expand All @@ -125,7 +126,9 @@ jobs:
run: |
python -m pip install .
PSYCOPG2_PIP_ENTRY=$(pip list | grep "psycopg2 " || pip list | grep psycopg2-binary)
echo $(PSYCOPG2_PIP_ENTRY)
PSYCOPG2_NAME="${PSYCOPG2_PIP_ENTRY%% *}"
echo $(PSYCOPG2_NAME)
if [[ "${PSYCOPG2_NAME}" != "${{ matrix.scenario.psycopg2-name }}" ]]; then
exit 1
fi

0 comments on commit afcffb7

Please sign in to comment.