summaryrefslogtreecommitdiff
path: root/src/_pytest/deprecated.py
diff options
context:
space:
mode:
authorRan Benita <ran@unusedvar.com>2020-04-17 16:05:43 +0300
committerRan Benita <ran@unusedvar.com>2020-04-24 18:54:46 +0300
commit907e29a47b666067af4e64eb694d71cf72f61591 (patch)
treef4c475ef6e90b8ceb5e0ac9a663b1b3130458f78 /src/_pytest/deprecated.py
parent7d5f5a878598aaa7f3e100ef6a97bcd13c1b408d (diff)
downloadpytest-907e29a47b666067af4e64eb694d71cf72f61591.tar.gz
fixtures: deprecate pytest._fillfuncargs function
This function is exposed and kept alive for the oejskit plugin which is abandoned and no longer works with recent plugins, so let's prepare to completely remove it.
Diffstat (limited to 'src/_pytest/deprecated.py')
-rw-r--r--src/_pytest/deprecated.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/_pytest/deprecated.py b/src/_pytest/deprecated.py
index 926cfcf19..2295bfe1d 100644
--- a/src/_pytest/deprecated.py
+++ b/src/_pytest/deprecated.py
@@ -25,6 +25,11 @@ FUNCARGNAMES = PytestDeprecationWarning(
"since pytest 2.3 - use the newer attribute instead."
)
+FILLFUNCARGS = PytestDeprecationWarning(
+ "The `_fillfuncargs` function is deprecated, use "
+ "function._request._fillfixtures() instead if you must."
+)
+
RESULT_LOG = PytestDeprecationWarning(
"--result-log is deprecated, please try the new pytest-reportlog plugin.\n"
"See https://docs.pytest.org/en/latest/deprecations.html#result-log-result-log for more information."