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 60
60
env_file : actions-310.yaml
61
61
pattern : " not slow and not network and not single_cpu"
62
62
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"
67
63
- name : " Pypy"
68
64
env_file : actions-pypy-38.yaml
69
65
pattern : " not slow and not network and not single_cpu"
86
82
EXTRA_APT : ${{ matrix.extra_apt || '' }}
87
83
LANG : ${{ matrix.lang || '' }}
88
84
LC_ALL : ${{ matrix.lc_all || '' }}
89
- PANDAS_DATA_MANAGER : ${{ matrix.pandas_data_manager || 'block' }}
90
85
PANDAS_COPY_ON_WRITE : ${{ matrix.pandas_copy_on_write || '0' }}
91
86
PANDAS_CI : ${{ matrix.pandas_ci || '1' }}
92
87
TEST_ARGS : ${{ matrix.test_args || '' }}
97
92
COVERAGE : ${{ !contains(matrix.env_file, 'pypy') }}
98
93
concurrency :
99
94
# 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 || '' }}
101
96
cancel-in-progress : true
102
97
103
98
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