32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
"""
|
|
This module contains deprecation messages and bits of code used elsewhere in the codebase
|
|
that is planned to be removed in the next pytest release.
|
|
|
|
Keeping it in a central location makes it easy to track what is deprecated and should
|
|
be removed when the time comes.
|
|
|
|
All constants defined in this module should be either PytestWarning instances or UnformattedWarning
|
|
in case of warnings which need to format their messages.
|
|
"""
|
|
from _pytest.warning_types import PytestDeprecationWarning
|
|
|
|
# set of plugins which have been integrated into the core; we use this list to ignore
|
|
# them during registration to avoid conflicts
|
|
DEPRECATED_EXTERNAL_PLUGINS = {
|
|
"pytest_catchlog",
|
|
"pytest_capturelog",
|
|
"pytest_faulthandler",
|
|
}
|
|
|
|
|
|
FUNCARGNAMES = PytestDeprecationWarning(
|
|
"The `funcargnames` attribute was an alias for `fixturenames`, "
|
|
"since pytest 2.3 - use the newer attribute instead."
|
|
)
|
|
|
|
|
|
RESULT_LOG = PytestDeprecationWarning(
|
|
"--result-log is deprecated and scheduled for removal in pytest 6.0.\n"
|
|
"See https://docs.pytest.org/en/latest/deprecations.html#result-log-result-log for more information."
|
|
)
|