28 lines
852 B
Python
28 lines
852 B
Python
import pytest
|
|
|
|
pytestmark = [
|
|
# fastparquet
|
|
pytest.mark.filterwarnings(
|
|
"ignore:PY_SSIZE_T_CLEAN will be required.*:DeprecationWarning"
|
|
),
|
|
pytest.mark.filterwarnings(
|
|
"ignore:Block.is_categorical is deprecated:DeprecationWarning"
|
|
),
|
|
pytest.mark.filterwarnings(
|
|
r"ignore:`np\.bool` is a deprecated alias:DeprecationWarning"
|
|
),
|
|
# xlrd
|
|
pytest.mark.filterwarnings(
|
|
"ignore:This method will be removed in future versions:DeprecationWarning"
|
|
),
|
|
pytest.mark.filterwarnings(
|
|
"ignore:This method will be removed in future versions. "
|
|
r"Use 'tree.iter\(\)' or 'list\(tree.iter\(\)\)' instead."
|
|
":PendingDeprecationWarning"
|
|
),
|
|
# GH 26552
|
|
pytest.mark.filterwarnings(
|
|
"ignore:As the xlwt package is no longer maintained:FutureWarning"
|
|
),
|
|
]
|