This is an automated email from the ASF dual-hosted git repository.
henry3260 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 9f978d30097 Show the test type description in provider compatibility
job names (#72551)
9f978d30097 is described below
commit 9f978d30097b030bb68f24d88e9e1e3da11e0c99
Author: rjgoyln <[email protected]>
AuthorDate: Sun Sep 6 02:43:18 2026 +0800
Show the test type description in provider compatibility job names (#72551)
The providers-compatibility-tests-matrix job fans out over two
independent matrix keys, `compat` and `test-types`, but its name looks
the description up under `compat`. Nothing supplies it there, so every
compatibility job is named with a dangling separator —
`Compat 3.0.6:P3.10:` — and the run never says which provider test types
it covered. The step name inside the same job already reads the key
correctly.
---
.github/workflows/test-providers.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/test-providers.yml
b/.github/workflows/test-providers.yml
index 4ce24af4c5b..54e877c9712 100644
--- a/.github/workflows/test-providers.yml
+++ b/.github/workflows/test-providers.yml
@@ -178,7 +178,7 @@ jobs:
providers-compatibility-tests-matrix:
timeout-minutes: 80
# yamllint disable rule:line-length
- name: Compat ${{ matrix.compat.airflow-version }}:P${{
matrix.compat.python-version }}:${{ matrix.compat.test-types.description }}
+ name: Compat ${{ matrix.compat.airflow-version }}:P${{
matrix.compat.python-version }}:${{ matrix.test-types.description }}
runs-on: ${{ fromJSON(inputs.runners) }}
strategy:
fail-fast: false