Skip to content

Commit 39296af

Browse files
kouthisisnic
authored andcommitted
apacheGH-49295: [Python] Remove "mimalloc" from mandatory_backends (apache#49645)
### Rationale for this change mimalloc is enabled by default but users can disable it. For example, Debian package disables it. If it's disabled, PyArrow tests are failed. ### What changes are included in this PR? Remove `"mimalloc"` from `mandatory_backends` in our test. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * GitHub Issue: apache#49295 Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
1 parent 5bbfb11 commit 39296af

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

python/pyarrow/tests/test_memory.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@
3030
pytestmark = pytest.mark.processes
3131

3232
possible_backends = ["system", "jemalloc", "mimalloc"]
33-
# Backends which are expected to be present in all builds of PyArrow,
34-
# except if the user manually recompiled Arrow C++.
35-
mandatory_backends = ["system", "mimalloc"]
33+
mandatory_backends = ["system"]
3634

3735

3836
def backend_factory(backend_name):

0 commit comments

Comments
 (0)