fix: connect integration tests to Compose network
E2E Tests / Run on Ubuntu (pull_request) Failing after 50s
Tests / Run on Ubuntu (pull_request) Successful in 3m58s
Lint / Run on Ubuntu (pull_request) Successful in 4m22s

This commit is contained in:
2026-09-10 16:50:44 +00:00
parent 98cdc9c2b2
commit 5ff3cf7282
2 changed files with 12 additions and 2 deletions
+7 -2
View File
@@ -31,11 +31,16 @@ jobs:
make test
- name: Running PostgreSQL Integration Tests
run: make test-integration
run: |
make dev-up
docker network connect postgresql-tenant-operator-dev_default "${HOSTNAME}"
POSTGRES_TEST_DSN="postgres://postgres:postgres-dev-only@postgres:5432/postgres?sslmode=disable" make test-integration
- name: Clean up Integration Dependencies
if: always()
run: make dev-down
run: |
docker network disconnect postgresql-tenant-operator-dev_default "${HOSTNAME}" || true
make dev-down
- name: Verify generated files and modules are current
run: git diff --exit-code