Skip to content

Commit

Permalink
remove references to hatch in psycopg2 test
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Jun 13, 2024
1 parent d95529e commit 2c7d516
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 @@ -156,7 +156,7 @@ jobs:
source venv/bin/activate
python -m pip install .
PSYCOPG2_NAME=$((hatch run pip show psycopg2 || hatch run pip show psycopg2-binary) | grep Name | cut -d " " -f 2)
PSYCOPG2_NAME=$((pip show psycopg2 || pip show psycopg2-binary) | grep Name | cut -d " " -f 2)
if [[ "$PSYCOPG2_NAME" != "$PSYCOPG2_EXPECTED_NAME" ]]; then
exit 1
fi
Expand All @@ -179,7 +179,7 @@ jobs:
pip install psycopg2==$PSYCOPG2_VERSION
# this is the end of the work around
PSYCOPG2_NAME=$((hatch run pip show psycopg2 || hatch run pip show psycopg2-binary) | grep Name | cut -d " " -f 2)
PSYCOPG2_NAME=$((pip show psycopg2 || pip show psycopg2-binary) | grep Name | cut -d " " -f 2)
if [[ "$PSYCOPG2_NAME" != "$PSYCOPG2_EXPECTED_NAME" ]]; then
exit 1
fi
Expand Down

0 comments on commit 2c7d516

Please sign in to comment.