2016-12-20 14:10:21 -05:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
|
# distributed with this work for additional information
|
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing,
|
|
|
|
|
# software distributed under the License is distributed on an
|
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
|
# KIND, either express or implied. See the License for the
|
|
|
|
|
# specific language governing permissions and limitations
|
|
|
|
|
# under the License.
|
|
|
|
|
|
|
|
|
|
[build_sphinx]
|
|
|
|
|
source-dir = doc/
|
|
|
|
|
build-dir = doc/_build
|
2017-05-15 16:16:01 -04:00
|
|
|
|
|
|
|
|
[tool:pytest]
|
|
|
|
|
addopts = --ignore=scripts
|
2019-09-19 16:38:19 -05:00
|
|
|
filterwarnings =
|
2026-04-02 09:50:27 +02:00
|
|
|
# https://github.com/apache/arrow/issues/49227
|
|
|
|
|
ignore:pyarrow.gandiva is deprecated:FutureWarning
|
2019-09-19 16:38:19 -05:00
|
|
|
error:The SparseDataFrame:FutureWarning
|
2023-10-16 10:33:22 +02:00
|
|
|
# https://github.com/apache/arrow/issues/38239
|
|
|
|
|
ignore:Setting custom ClientSession:DeprecationWarning
|
2022-08-17 15:37:16 +02:00
|
|
|
# Get a debug traceback when a test takes a really long time
|
|
|
|
|
faulthandler_timeout = 300
|
2020-05-19 09:33:39 +02:00
|
|
|
|
|
|
|
|
[pep8]
|
2023-03-28 13:41:44 +02:00
|
|
|
ignore = E211,E225,E226,E227,E402,W503,W504
|
2022-12-12 20:24:28 +01:00
|
|
|
max_line_length = 88
|
2022-12-22 20:34:12 +01:00
|
|
|
|
|
|
|
|
[flake8]
|
|
|
|
|
max-line-length = 88
|