Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions dev/tasks/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,6 @@ tasks:
params:
env:
PYTHON: "{{ python_version }}"
PYTEST_ARGS: "-W error"
image: conda-python
{% endfor %}

Expand All @@ -1254,7 +1253,7 @@ tasks:
HYPOTHESIS_PROFILE: ci
PYARROW_TEST_HYPOTHESIS: ON
# limit to execute hypothesis tests only
PYTEST_ARGS: "-m hypothesis -W error"
PYTEST_ARGS: "-m hypothesis"
image: conda-python-pandas

test-conda-python-3.10-substrait:
Expand Down
4 changes: 3 additions & 1 deletion python/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ build-dir = doc/_build
[tool:pytest]
addopts = --ignore=scripts
filterwarnings =
error:The SparseDataFrame:FutureWarning
error
# https://github.com/apache/arrow/issues/38239
# ignore:Setting custom ClientSession:DeprecationWarning
# Get a debug traceback when a test takes a really long time
faulthandler_timeout = 300

Expand Down