diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 61cd35c5..bb6d6894 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -126,9 +126,9 @@ jobs: run: | python -m pip install . PSYCOPG2_PIP_ENTRY=$(pip list | grep "psycopg2 " || pip list | grep psycopg2-binary) - echo $(PSYCOPG2_PIP_ENTRY) + echo $PSYCOPG2_PIP_ENTRY PSYCOPG2_NAME="${PSYCOPG2_PIP_ENTRY%% *}" - echo $(PSYCOPG2_NAME) + echo $PSYCOPG2_NAME if [[ "${PSYCOPG2_NAME}" != "${{ matrix.scenario.psycopg2-name }}" ]]; then exit 1 fi