File tree 2 files changed +1
-21
lines changed
2 files changed +1
-21
lines changed Original file line number Diff line number Diff line change 59
59
env_file : actions-310.yaml
60
60
pattern : " not slow and not network and not single_cpu"
61
61
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"
66
62
- name : " Pypy"
67
63
env_file : actions-pypy-38.yaml
68
64
pattern : " not slow and not network and not single_cpu"
85
81
EXTRA_APT : ${{ matrix.extra_apt || '' }}
86
82
LANG : ${{ matrix.lang || '' }}
87
83
LC_ALL : ${{ matrix.lc_all || '' }}
88
- PANDAS_DATA_MANAGER : ${{ matrix.pandas_data_manager || 'block' }}
89
84
PANDAS_COPY_ON_WRITE : ${{ matrix.pandas_copy_on_write || '0' }}
90
85
PANDAS_CI : ${{ matrix.pandas_ci || '1' }}
91
86
TEST_ARGS : ${{ matrix.test_args || '' }}
96
91
COVERAGE : ${{ !contains(matrix.env_file, 'pypy') }}
97
92
concurrency :
98
93
# 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 || '' }}
100
95
cancel-in-progress : true
101
96
102
97
services :
Original file line number Diff line number Diff line change 32
32
33
33
echo $PYTEST_CMD
34
34
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
You can’t perform that action at this time.
0 commit comments