Skip to content

Commit 4b24974

Browse files
authored
CI: Fix concurrency group for new CoW warn build (#55770)
* CI: Fix concurrency group for new CoW warn build * Formatting
1 parent 2f977dc commit 4b24974

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/unit-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
env_file: actions-311.yaml
7070
pattern: "not slow and not network and not single_cpu"
7171
pandas_copy_on_write: "1"
72-
- name: "Copy-on-Write (warnings)"
72+
- name: "Copy-on-Write 3.11 (warnings)"
7373
env_file: actions-311.yaml
7474
pattern: "not slow and not network and not single_cpu"
7575
pandas_copy_on_write: "warn"
@@ -98,7 +98,7 @@ jobs:
9898
PYTEST_TARGET: ${{ matrix.pytest_target || 'pandas' }}
9999
concurrency:
100100
# https://github.community/t/concurrecy-not-work-for-push/183068/7
101-
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.pattern }}-${{ matrix.extra_apt || '' }}
101+
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.pattern }}-${{ matrix.extra_apt || '' }}-${{ matrix.pandas_copy_on_write || '' }}
102102
cancel-in-progress: true
103103

104104
services:

0 commit comments

Comments
 (0)