Skip to content

Commit d3718e4

Browse files
phoflpmhatre1
authored andcommitted
Remove Copy-on-Write builds (pandas-dev#57238)
1 parent 5c62ace commit d3718e4

File tree

1 file changed

+1
-18
lines changed

1 file changed

+1
-18
lines changed

.github/workflows/unit-tests.yml

+1-18
Original file line numberDiff line numberDiff line change
@@ -57,22 +57,6 @@ jobs:
5757
# Also install zh_CN (its encoding is gb2312) but do not activate it.
5858
# It will be temporarily activated during tests with locale.setlocale
5959
extra_loc: "zh_CN"
60-
- name: "Copy-on-Write 3.9"
61-
env_file: actions-39.yaml
62-
pattern: "not slow and not network and not single_cpu"
63-
pandas_copy_on_write: "1"
64-
- name: "Copy-on-Write 3.10"
65-
env_file: actions-310.yaml
66-
pattern: "not slow and not network and not single_cpu"
67-
pandas_copy_on_write: "1"
68-
- name: "Copy-on-Write 3.11"
69-
env_file: actions-311.yaml
70-
pattern: "not slow and not network and not single_cpu"
71-
pandas_copy_on_write: "1"
72-
- name: "Copy-on-Write 3.12"
73-
env_file: actions-312.yaml
74-
pattern: "not slow and not network and not single_cpu"
75-
pandas_copy_on_write: "1"
7660
- name: "Pypy"
7761
env_file: actions-pypy-39.yaml
7862
pattern: "not slow and not network and not single_cpu"
@@ -101,7 +85,6 @@ jobs:
10185
PATTERN: ${{ matrix.pattern }}
10286
LANG: ${{ matrix.lang || 'C.UTF-8' }}
10387
LC_ALL: ${{ matrix.lc_all || '' }}
104-
PANDAS_COPY_ON_WRITE: ${{ matrix.pandas_copy_on_write || '0' }}
10588
PANDAS_CI: ${{ matrix.pandas_ci || '1' }}
10689
TEST_ARGS: ${{ matrix.test_args || '' }}
10790
PYTEST_WORKERS: ${{ matrix.pytest_workers || 'auto' }}
@@ -111,7 +94,7 @@ jobs:
11194
QT_QPA_PLATFORM: offscreen
11295
concurrency:
11396
# https://github.community/t/concurrecy-not-work-for-push/183068/7
114-
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.pattern }}-${{ matrix.extra_apt || '' }}-${{ matrix.pandas_copy_on_write || '' }}
97+
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.pattern }}-${{ matrix.extra_apt || '' }}}
11598
cancel-in-progress: true
11699

117100
services:

0 commit comments

Comments
 (0)