Skip to content

Commit 70a31e7

Browse files
authored
CI: Remove ArrayManager job (#52637)
1 parent bc5039e commit 70a31e7

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

.github/workflows/ubuntu.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,6 @@ jobs:
6060
env_file: actions-310.yaml
6161
pattern: "not slow and not network and not single_cpu"
6262
pandas_copy_on_write: "1"
63-
- name: "Data Manager"
64-
env_file: actions-38.yaml
65-
pattern: "not slow and not network and not single_cpu"
66-
pandas_data_manager: "array"
6763
- name: "Pypy"
6864
env_file: actions-pypy-38.yaml
6965
pattern: "not slow and not network and not single_cpu"
@@ -86,7 +82,6 @@ jobs:
8682
EXTRA_APT: ${{ matrix.extra_apt || '' }}
8783
LANG: ${{ matrix.lang || '' }}
8884
LC_ALL: ${{ matrix.lc_all || '' }}
89-
PANDAS_DATA_MANAGER: ${{ matrix.pandas_data_manager || 'block' }}
9085
PANDAS_COPY_ON_WRITE: ${{ matrix.pandas_copy_on_write || '0' }}
9186
PANDAS_CI: ${{ matrix.pandas_ci || '1' }}
9287
TEST_ARGS: ${{ matrix.test_args || '' }}
@@ -97,7 +92,7 @@ jobs:
9792
COVERAGE: ${{ !contains(matrix.env_file, 'pypy') }}
9893
concurrency:
9994
# https://github.community/t/concurrecy-not-work-for-push/183068/7
100-
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.pattern }}-${{ matrix.extra_apt || '' }}-${{ matrix.pandas_data_manager || '' }}
95+
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.pattern }}-${{ matrix.extra_apt || '' }}
10196
cancel-in-progress: true
10297

10398
services:

ci/run_tests.sh

-15
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,3 @@ fi
3232

3333
echo $PYTEST_CMD
3434
sh -c "$PYTEST_CMD"
35-
36-
if [[ "$PANDAS_DATA_MANAGER" != "array" && "$PYTEST_TARGET" == "pandas" ]]; then
37-
# The ArrayManager tests should have already been run by PYTEST_CMD if PANDAS_DATA_MANAGER was already set to array
38-
# If we're targeting specific files, e.g. test_downstream.py, don't run.
39-
PYTEST_AM_CMD="PANDAS_DATA_MANAGER=array pytest -n $PYTEST_WORKERS --dist=loadfile $TEST_ARGS $COVERAGE pandas"
40-
41-
if [[ "$PATTERN" ]]; then
42-
PYTEST_AM_CMD="$PYTEST_AM_CMD -m \"$PATTERN and arraymanager\""
43-
else
44-
PYTEST_AM_CMD="$PYTEST_AM_CMD -m \"arraymanager\""
45-
fi
46-
47-
echo $PYTEST_AM_CMD
48-
sh -c "$PYTEST_AM_CMD"
49-
fi

0 commit comments

Comments
 (0)