Skip to content

Commit 2f9316d

Browse files
committed
try non-editable
1 parent 7f50043 commit 2f9316d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/unit-tests.yml

+9
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ jobs:
3434
env_file: actions-311-downstream_compat.yaml
3535
pattern: "not slow and not network and not single_cpu"
3636
pytest_target: "pandas/tests/test_downstream.py"
37+
editable: true
3738
- name: "Minimum Versions"
3839
env_file: actions-39-minimum_versions.yaml
3940
pattern: "not slow and not network and not single_cpu"
41+
editable: true
4042
- name: "Locale: it_IT"
4143
env_file: actions-311.yaml
4244
pattern: "not slow and not network and not single_cpu"
@@ -47,6 +49,7 @@ jobs:
4749
# Also install it_IT (its encoding is ISO8859-1) but do not activate it.
4850
# It will be temporarily activated during tests with locale.setlocale
4951
extra_loc: "it_IT"
52+
editable: true
5053
- name: "Locale: zh_CN"
5154
env_file: actions-311.yaml
5255
pattern: "not slow and not network and not single_cpu"
@@ -57,22 +60,27 @@ jobs:
5760
# Also install zh_CN (its encoding is gb2312) but do not activate it.
5861
# It will be temporarily activated during tests with locale.setlocale
5962
extra_loc: "zh_CN"
63+
editable: true
6064
- name: "Pypy"
6165
env_file: actions-pypy-39.yaml
6266
pattern: "not slow and not network and not single_cpu"
6367
test_args: "--max-worker-restart 0"
68+
editable: true
6469
- name: "Numpy Dev"
6570
env_file: actions-311-numpydev.yaml
6671
pattern: "not slow and not network and not single_cpu"
6772
test_args: "-W error::DeprecationWarning -W error::FutureWarning"
73+
editable: true
6874
- name: "Pyarrow Nightly"
6975
env_file: actions-311-pyarrownightly.yaml
7076
pattern: "not slow and not network and not single_cpu"
77+
editable: true
7178
- name: "ASAN / UBSAN"
7279
env_file: actions-311-sanitizers.yaml
7380
pattern: "not slow and not network and not single_cpu and not skip_ubsan"
7481
asan_options: "ASAN_OPTIONS=detect_leaks=0"
7582
preload: LD_PRELOAD=$(gcc -print-file-name=libasan.so)
83+
editable: false
7684
meson_args: --config-settings=setup-args="-Db_sanitize=address,undefined"
7785
cflags_adds: -fno-sanitize-recover=all
7886
pytest_workers: -1 # disable pytest-xdist as it swallows stderr from ASAN
@@ -155,6 +163,7 @@ jobs:
155163
id: build
156164
uses: ./.github/actions/build_pandas
157165
with:
166+
editable: ${{ matrix.editable }}
158167
meson_args: ${{ matrix.meson_args }}
159168
cflags_adds: ${{ matrix.cflags_adds }}
160169

0 commit comments

Comments
 (0)