@@ -29,30 +29,30 @@ jobs:
29
29
pattern : ["not single_cpu", "single_cpu"]
30
30
# Don't test pyarrow v2/3: Causes timeouts in read_csv engine
31
31
# even if tests are skipped/xfailed
32
- pyarrow_version : ["5", "6", "7"]
33
- include :
34
- - env_file : actions-38-downstream_compat.yaml
35
- pattern : " not slow and not network and not single_cpu"
36
- pytest_target : " pandas/tests/test_downstream.py"
37
- - env_file : actions-38-minimum_versions.yaml
38
- pattern : " not slow and not network and not single_cpu"
39
- - env_file : actions-38.yaml
40
- pattern : " not slow and not network and not single_cpu"
41
- extra_apt : " language-pack-it"
42
- lang : " it_IT.utf8"
43
- lc_all : " it_IT.utf8"
44
- - env_file : actions-38.yaml
45
- pattern : " not slow and not network and not single_cpu"
46
- extra_apt : " language-pack-zh-hans"
47
- lang : " zh_CN.utf8"
48
- lc_all : " zh_CN.utf8"
49
- - env_file : actions-pypy-38.yaml
50
- pattern : " not slow and not network and not single_cpu"
51
- test_args : " --max-worker-restart 0"
52
- - env_file : actions-310-numpydev.yaml
53
- pattern : " not slow and not network and not single_cpu"
54
- pandas_testing_mode : " deprecate"
55
- test_args : " -W error"
32
+ pyarrow_version : ["5"] # , "6", "7"]
33
+ # include:
34
+ # - env_file: actions-38-downstream_compat.yaml
35
+ # pattern: "not slow and not network and not single_cpu"
36
+ # pytest_target: "pandas/tests/test_downstream.py"
37
+ # - env_file: actions-38-minimum_versions.yaml
38
+ # pattern: "not slow and not network and not single_cpu"
39
+ # - env_file: actions-38.yaml
40
+ # pattern: "not slow and not network and not single_cpu"
41
+ # extra_apt: "language-pack-it"
42
+ # lang: "it_IT.utf8"
43
+ # lc_all: "it_IT.utf8"
44
+ # - env_file: actions-38.yaml
45
+ # pattern: "not slow and not network and not single_cpu"
46
+ # extra_apt: "language-pack-zh-hans"
47
+ # lang: "zh_CN.utf8"
48
+ # lc_all: "zh_CN.utf8"
49
+ # - env_file: actions-pypy-38.yaml
50
+ # pattern: "not slow and not network and not single_cpu"
51
+ # test_args: "--max-worker-restart 0"
52
+ # - env_file: actions-310-numpydev.yaml
53
+ # pattern: "not slow and not network and not single_cpu"
54
+ # pandas_testing_mode: "deprecate"
55
+ # test_args: "-W error"
56
56
fail-fast : false
57
57
env :
58
58
ENV_FILE : ci/deps/${{ matrix.env_file }}
@@ -118,16 +118,15 @@ jobs:
118
118
# xsel for clipboard tests
119
119
run : sudo apt-get update && sudo apt-get install -y libc6-dev-i386 xsel ${{ env.EXTRA_APT }}
120
120
121
- - name : Set up Conda
121
+ - name : Set up Conda (${{ matrix.env_file }}, Arrow ${{ matrix.pyarrow_version}})
122
122
uses : ./.github/actions/setup
123
123
with :
124
124
environment-file : ${{ env.ENV_FILE }}
125
+ pyarrow-version : ${{ matrix.pyarrow_version }}
125
126
is-pypy : ${{ env.IS_PYPY }}
126
127
127
128
- name : Build pandas
128
129
uses : ./.github/actions/build-pandas
129
- with :
130
- pyarrow-version : ${{ matrix.pyarrow_version }}
131
130
132
131
- name : Test
133
132
run : ci/run_tests.sh
0 commit comments