Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
gh-actions: fix env vars for postgress
Browse files Browse the repository at this point in the history
  • Loading branch information
drjova committed Jul 26, 2024
1 parent 239c65c commit c37c719
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/test-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ jobs:
with:
ref: ${{ inputs.ref }}

- name: Current directory
run: echo $(pwd)

- name: Test
working-directory: ./workflows
run: >
Expand All @@ -55,9 +52,9 @@ jobs:
-v "$(pwd)"/requirements-test.txt:/opt/airflow/requirements-test.txt
-v "$(pwd)"/data:/opt/airflow/data
-e AIRFLOW__CORE__EXECUTOR=CeleryExecutor
-e AIRFLOW__DATABASE__SQL_ALCHEMY_CONN=postgresql+psycopg2://airflow:airflow@postgres/airflow
-e AIRFLOW__CELERY__RESULT_BACKEND=db+postgresql://airflow:airflow@postgres/airflow
-e AIRFLOW__CELERY__BROKER_URL=redis://:@redis:6379/0
-e AIRFLOW__DATABASE__SQL_ALCHEMY_CONN=postgresql+psycopg2://airflow:airflow@127.0.0.1:5432/airflow
-e AIRFLOW__CELERY__RESULT_BACKEND=db+postgresql://airflow:airflow@127.0.0.1:5432/airflow
-e AIRFLOW__CELERY__BROKER_URL=redis://:@127.0.0.1:6379/0
-e AIRFLOW__CORE__FERNET_KEY=""
-e AIRFLOW__CORE__DAGS_ARE_PAUSED_AT_CREATION="true"
-e AIRFLOW__CORE__LOAD_EXAMPLES="false"
Expand Down

0 comments on commit c37c719

Please sign in to comment.