From 245586112a441f186daae63f50bb474b5d56b153 Mon Sep 17 00:00:00 2001 From: Dev Aggarwal Date: Tue, 25 Jun 2024 19:49:40 +0530 Subject: [PATCH] github actions python tests --- .github/workflows/python-tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 7af7f417f..56f7babab 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -21,6 +21,7 @@ jobs: POSTGRES_DB: gooey POSTGRES_USER: postgres POSTGRES_PASSWORD: password + POSTGRES_INITDB_ARGS: "-c max_connections=10000" # Set health checks to wait until postgres has started options: >- --health-cmd pg_isready @@ -40,6 +41,9 @@ jobs: --health-interval 10s --health-timeout 5s --health-retries 5 + ports: + # Maps tcp port 6379 on service container to the host + - 6379:6379 steps: - uses: actions/checkout@v4