Skip to content

Commit 5ed8d5e

Browse files
Backport PR #52637 on branch 2.0.x (CI: Remove ArrayManager job) (#52646)
Backport PR #52637: CI: Remove ArrayManager job Co-authored-by: Matthew Roeschke <[email protected]>
1 parent ab4be44 commit 5ed8d5e

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
@@ -59,10 +59,6 @@ jobs:
5959
env_file: actions-310.yaml
6060
pattern: "not slow and not network and not single_cpu"
6161
pandas_copy_on_write: "1"
62-
- name: "Data Manager"
63-
env_file: actions-38.yaml
64-
pattern: "not slow and not network and not single_cpu"
65-
pandas_data_manager: "array"
6662
- name: "Pypy"
6763
env_file: actions-pypy-38.yaml
6864
pattern: "not slow and not network and not single_cpu"
@@ -85,7 +81,6 @@ jobs:
8581
EXTRA_APT: ${{ matrix.extra_apt || '' }}
8682
LANG: ${{ matrix.lang || '' }}
8783
LC_ALL: ${{ matrix.lc_all || '' }}
88-
PANDAS_DATA_MANAGER: ${{ matrix.pandas_data_manager || 'block' }}
8984
PANDAS_COPY_ON_WRITE: ${{ matrix.pandas_copy_on_write || '0' }}
9085
PANDAS_CI: ${{ matrix.pandas_ci || '1' }}
9186
TEST_ARGS: ${{ matrix.test_args || '' }}
@@ -96,7 +91,7 @@ jobs:
9691
COVERAGE: ${{ !contains(matrix.env_file, 'pypy') }}
9792
concurrency:
9893
# https://github.community/t/concurrecy-not-work-for-push/183068/7
99-
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.pattern }}-${{ matrix.extra_apt || '' }}-${{ matrix.pandas_data_manager || '' }}
94+
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.pattern }}-${{ matrix.extra_apt || '' }}
10095
cancel-in-progress: true
10196

10297
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)