This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-8-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 879af06000f615f0cbf19a3b5e0dce9a4e31fb6f Author: Andrey Anshin <[email protected]> AuthorDate: Sat Dec 23 22:21:41 2023 +0400 Use default Postgres version for Quarantined tests (#36390) (cherry picked from commit 8e70d560245e9a102834fc8ff1d3cb269254e5a5) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e1436476c..0c4962ff06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1497,8 +1497,8 @@ jobs: run: breeze testing tests || true env: BACKEND: "postgres" - BACKEND_VERSION: "11" - POSTGRES_VERSION: "11" + BACKEND_VERSION: ${{needs.build-info.outputs.default-postgres-version}} + POSTGRES_VERSION: ${{needs.build-info.outputs.default-postgres-version}} - name: > Tests: mysql:${{needs.build-info.outputs.default-python-version}}:Quarantined run: breeze testing tests || true
