Skip to content

Commit

Permalink
Remove entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
betodealmeida committed Sep 24, 2024
1 parent f96ed4e commit bbd8cc8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 25 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
docker compose -f postgres/docker-compose.yml up --build -d
- name: Wait for Postgres to become available
run: |
until docker run --network container:postgres_postgres_1 postgres_postgres pg_isready -h postgres -p 5432 -U shillelagh --timeout=90; do sleep 10; done
until docker run --network container:postgres-postgres-1 postgres-postgres pg_isready -h postgres -p 5432 -U shillelagh --timeout=90; do sleep 10; done
- name: Test with pytest
env:
SHILLELAGH_ADAPTER_KWARGS: ${{ secrets.SHILLELAGH_ADAPTER_KWARGS }}
Expand All @@ -45,5 +45,5 @@ jobs:
- name: Stop the Postgres service
if: always()
run: |
docker logs postgres_postgres_1
docker logs postgres-postgres-1
docker compose -f postgres/docker-compose.yml down
22 changes: 0 additions & 22 deletions postgres/entrypoint.sh

This file was deleted.

2 changes: 1 addition & 1 deletion tests/adapters/api/gsheets/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,7 @@ def test_public_sheet_multicorn() -> None:
user="shillelagh",
password="shillelagh123",
host="localhost",
port=12345,
port=5432,
database="shillelagh",
)
cursor = connection.cursor()
Expand Down

0 comments on commit bbd8cc8

Please sign in to comment.