Fix typo in PytestExperimentalApiWarning
This commit is contained in:
parent
8ce3aeadbf
commit
415a62e373
|
@ -1,2 +1,5 @@
|
||||||
The functions ``Node.warn`` and ``Config.warn`` have been deprecated. Instead of ``Node.warn`` users should now use
|
The functions ``Node.warn`` and ``Config.warn`` have been deprecated. Instead of ``Node.warn`` users should now use
|
||||||
``Node.std_warn``, while ``Config.warn`` should be replaced by the standard ``warnings.warn``.
|
``Node.std_warn``, while ``Config.warn`` should be replaced by the standard ``warnings.warn``.
|
||||||
|
|
||||||
|
``RemovedInPytest4Warning`` and ``PytestExperimentalApiWarning`` are now part of the public API and should be accessed
|
||||||
|
using ``pytest.RemovedInPytest4Warning`` and ``pytest.PytestExperimentalApiWarning``.
|
||||||
|
|
|
@ -378,5 +378,5 @@ The following warning types ares used by pytest and are part of the public API:
|
||||||
|
|
||||||
.. autoclass:: pytest.RemovedInPytest4Warning
|
.. autoclass:: pytest.RemovedInPytest4Warning
|
||||||
|
|
||||||
.. autoclass:: pytest.PytestExerimentalApiWarning
|
.. autoclass:: pytest.PytestExperimentalApiWarning
|
||||||
|
|
||||||
|
|
|
@ -419,7 +419,7 @@ additionally it is possible to copy examples for a example folder before running
|
||||||
|
|
||||||
============================= warnings summary =============================
|
============================= warnings summary =============================
|
||||||
test_example.py::test_plugin
|
test_example.py::test_plugin
|
||||||
$REGENDOC_TMPDIR/test_example.py:4: PytestExerimentalApiWarning: testdir.copy_example is an experimental api that may change over time
|
$REGENDOC_TMPDIR/test_example.py:4: PytestExperimentalApiWarning: testdir.copy_example is an experimental api that may change over time
|
||||||
testdir.copy_example("test_example.py")
|
testdir.copy_example("test_example.py")
|
||||||
|
|
||||||
-- Docs: https://docs.pytest.org/en/latest/warnings.html
|
-- Docs: https://docs.pytest.org/en/latest/warnings.html
|
||||||
|
|
|
@ -645,7 +645,7 @@ class Testdir(object):
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
warnings.warn(
|
warnings.warn(
|
||||||
pytest.PytestExerimentalApiWarning.simple("testdir.copy_example"),
|
pytest.PytestExperimentalApiWarning.simple("testdir.copy_example"),
|
||||||
stacklevel=2,
|
stacklevel=2,
|
||||||
)
|
)
|
||||||
example_dir = self.request.config.getini("pytester_example_dir")
|
example_dir = self.request.config.getini("pytester_example_dir")
|
||||||
|
|
|
@ -22,7 +22,7 @@ class RemovedInPytest4Warning(PytestDeprecationWarning):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
class PytestExerimentalApiWarning(PytestWarning, FutureWarning):
|
class PytestExperimentalApiWarning(PytestWarning, FutureWarning):
|
||||||
"""
|
"""
|
||||||
Bases: :class:`pytest.PytestWarning`, :class:`FutureWarning`.
|
Bases: :class:`pytest.PytestWarning`, :class:`FutureWarning`.
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ from _pytest.warning_types import (
|
||||||
PytestWarning,
|
PytestWarning,
|
||||||
PytestDeprecationWarning,
|
PytestDeprecationWarning,
|
||||||
RemovedInPytest4Warning,
|
RemovedInPytest4Warning,
|
||||||
PytestExerimentalApiWarning,
|
PytestExperimentalApiWarning,
|
||||||
)
|
)
|
||||||
|
|
||||||
set_trace = __pytestPDB.set_trace
|
set_trace = __pytestPDB.set_trace
|
||||||
|
@ -55,7 +55,7 @@ __all__ = [
|
||||||
"Package",
|
"Package",
|
||||||
"param",
|
"param",
|
||||||
"PytestDeprecationWarning",
|
"PytestDeprecationWarning",
|
||||||
"PytestExerimentalApiWarning",
|
"PytestExperimentalApiWarning",
|
||||||
"PytestWarning",
|
"PytestWarning",
|
||||||
"raises",
|
"raises",
|
||||||
"register_assert_rewrite",
|
"register_assert_rewrite",
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -230,7 +230,7 @@ filterwarnings =
|
||||||
# produced by python >=3.5 on execnet (pytest-xdist)
|
# produced by python >=3.5 on execnet (pytest-xdist)
|
||||||
ignore:.*inspect.getargspec.*deprecated, use inspect.signature.*:DeprecationWarning
|
ignore:.*inspect.getargspec.*deprecated, use inspect.signature.*:DeprecationWarning
|
||||||
# pytest's own futurewarnings
|
# pytest's own futurewarnings
|
||||||
ignore::pytest.PytestExerimentalApiWarning
|
ignore::pytest.PytestExperimentalApiWarning
|
||||||
pytester_example_dir = testing/example_scripts
|
pytester_example_dir = testing/example_scripts
|
||||||
[flake8]
|
[flake8]
|
||||||
max-line-length = 120
|
max-line-length = 120
|
||||||
|
|
Loading…
Reference in New Issue