You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/08/23 20:53:30 UTC

[airflow] branch main updated: Remove postgres extra from Helm tests venv (#25921)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 09043a5ef4 Remove postgres extra from Helm tests venv (#25921)
09043a5ef4 is described below

commit 09043a5ef4260d477aaea4a5b8c3798323d8e8b2
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Tue Aug 23 22:53:22 2022 +0200

    Remove postgres extra from Helm tests venv (#25921)
    
    We do not need postgres extra when running Helm tests. The tests
    started to fail because we switch to a binary postgres dependency
    for postgres provider ad it started to fail because of lack of
    pgconfig, but we actually do not need the extra to run the tests
    so we can remove it.
---
 scripts/ci/kubernetes/ci_run_kubernetes_tests.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/kubernetes/ci_run_kubernetes_tests.sh b/scripts/ci/kubernetes/ci_run_kubernetes_tests.sh
index 6cf054ff66..ef89c8fb30 100755
--- a/scripts/ci/kubernetes/ci_run_kubernetes_tests.sh
+++ b/scripts/ci/kubernetes/ci_run_kubernetes_tests.sh
@@ -96,7 +96,7 @@ function create_virtualenv() {
 
     pip install pytest freezegun "${constraints[@]}"
 
-    pip install -e ".[cncf.kubernetes,postgres]" "${constraints[@]}"
+    pip install -e ".[cncf.kubernetes]" "${constraints[@]}"
 }
 
 function run_tests() {