Skip to content

Commit

Permalink
Enable error by default everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
raulcd committed Oct 13, 2023
1 parent 96d09e1 commit 49f12ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
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

0 comments on commit 49f12ed

Please sign in to comment.