Skip to content

Commit

Permalink
db-use-core fix postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcardle committed Dec 21, 2024
1 parent 8429300 commit 653e46b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- run: make smoke_test

cli_tests_postgres:
name: DB.io - CLI Tests
name: DB.io - CLI Tests for Postgres
needs: [build]
runs-on: ubuntu-24.04
# Service containers to run with `container-job`
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Run Smoke tests with Postgres
run: make smoke_test_postgres_ci
env:
POSTGRES_URL: postgres://postgres:mysecretpassword@postgres:5432/postgres
POSTGRES_URL: postgres://postgres:mysecretpassword@localhost:5432/postgres

io_tests:
name: DB.io - Unit Tests
Expand Down
2 changes: 1 addition & 1 deletion script/cli_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ DIR=`mktemp --directory`
TEMP_TAR="${DIR}/output.tar"
PROJECT_NAME=`cat $1 | jq -r '.name'`
DJANGO_PORT=${DJANGO_PORT:-9001}
POSTGRES_PORT=${POSTGRES_PORT:-5432}
POSTGRES_HOST=${POSTGRES_HOST:-localhost}
POSTGRES_PORT=${POSTGRES_PORT:-5432}

echo "Config file: ${PROJECT_FILE}"
echo "Temp dir: ${DIR}"
Expand Down

0 comments on commit 653e46b

Please sign in to comment.