From 87abb653240d5c53f8e14f80038e4a1b02c25664 Mon Sep 17 00:00:00 2001 From: Pankaj Koti Date: Mon, 21 Oct 2024 19:45:30 +0530 Subject: [PATCH] remove postgres service --- .github/workflows/cicd.yaml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index a744069..fdd8f8c 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -145,18 +145,6 @@ jobs: airflow-version: "2.7" - python-version: "3.12" airflow-version: "2.8" - services: - postgres: - image: postgres - env: - POSTGRES_PASSWORD: postgres - options: >- - --health-cmd pg_isready - --health-interval 10s - --health-timeout 5s - --health-retries 5 - ports: - - 5432:5432 steps: - uses: actions/checkout@v4 with: @@ -186,15 +174,8 @@ jobs: hatch run tests.py${{ matrix.python-version }}-${{ matrix.airflow-version }}:test-integration env: AIRFLOW__CORE__DAGBAG_IMPORT_TIMEOUT: 90.0 - AIRFLOW_CONN_EXAMPLE_CONN: postgres://postgres:postgres@0.0.0.0:5432/postgres AIRFLOW_HOME: ${{ github.workspace }} CONFIG_ROOT_DIR: ${{ github.workspace }}/dags - POSTGRES_DB: postgres - POSTGRES_HOST: localhost - POSTGRES_PASSWORD: postgres - POSTGRES_PORT: 5432 - POSTGRES_SCHEMA: public - POSTGRES_USER: postgres PYTHONPATH: ${{ github.workspace }}:${{ github.workspace }}/examples:$PYTHONPATH - name: Upload coverage to Github