2018-02-08 06:53:31 +08:00
|
|
|
|
|
|
|
Reference
|
|
|
|
=========
|
|
|
|
|
|
|
|
This page contains the full reference to pytest's API.
|
|
|
|
|
2018-02-27 07:13:33 +08:00
|
|
|
.. contents::
|
2018-02-28 04:32:34 +08:00
|
|
|
:depth: 3
|
2018-02-27 07:27:15 +08:00
|
|
|
:local:
|
|
|
|
|
2018-03-02 05:07:06 +08:00
|
|
|
Functions
|
|
|
|
---------
|
2018-02-27 07:27:15 +08:00
|
|
|
|
2018-02-28 05:26:40 +08:00
|
|
|
pytest.approx
|
2018-03-02 05:07:06 +08:00
|
|
|
~~~~~~~~~~~~~
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-02-27 07:27:15 +08:00
|
|
|
.. autofunction:: _pytest.python_api.approx
|
|
|
|
|
2018-02-28 04:15:08 +08:00
|
|
|
pytest.fail
|
|
|
|
~~~~~~~~~~~
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-03-02 05:07:06 +08:00
|
|
|
**Tutorial**: :ref:`skipping`
|
|
|
|
|
2018-02-27 07:27:15 +08:00
|
|
|
.. autofunction:: _pytest.outcomes.fail
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-02-28 04:15:08 +08:00
|
|
|
pytest.skip
|
|
|
|
~~~~~~~~~~~
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-03-02 04:54:54 +08:00
|
|
|
.. autofunction:: _pytest.outcomes.skip(msg, [allow_module_level=False])
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-02-28 04:15:08 +08:00
|
|
|
pytest.importorskip
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-02-27 07:27:15 +08:00
|
|
|
.. autofunction:: _pytest.outcomes.importorskip
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-02-28 04:15:08 +08:00
|
|
|
pytest.xfail
|
|
|
|
~~~~~~~~~~~~
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-02-27 07:27:15 +08:00
|
|
|
.. autofunction:: _pytest.outcomes.xfail
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-02-28 04:15:08 +08:00
|
|
|
pytest.exit
|
2018-03-02 05:07:06 +08:00
|
|
|
~~~~~~~~~~~
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-02-27 07:27:15 +08:00
|
|
|
.. autofunction:: _pytest.outcomes.exit
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-02-28 04:15:08 +08:00
|
|
|
pytest.main
|
2018-03-02 05:07:06 +08:00
|
|
|
~~~~~~~~~~~
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-02-27 07:27:15 +08:00
|
|
|
.. autofunction:: _pytest.config.main
|
|
|
|
|
2018-03-01 07:34:20 +08:00
|
|
|
pytest.param
|
2018-03-02 05:07:06 +08:00
|
|
|
~~~~~~~~~~~~~
|
2018-03-01 07:34:20 +08:00
|
|
|
|
2018-03-02 04:54:54 +08:00
|
|
|
.. autofunction:: pytest.param(*values, [id], [marks])
|
2018-03-01 07:34:20 +08:00
|
|
|
|
2018-02-28 04:15:08 +08:00
|
|
|
pytest.raises
|
2018-03-02 05:07:06 +08:00
|
|
|
~~~~~~~~~~~~~
|
2018-02-27 07:57:02 +08:00
|
|
|
|
2018-02-28 04:58:51 +08:00
|
|
|
**Tutorial**: :ref:`assertraises`.
|
|
|
|
|
2018-03-02 04:54:54 +08:00
|
|
|
.. autofunction:: pytest.raises(expected_exception: Exception, [match], [message])
|
2018-02-27 07:57:02 +08:00
|
|
|
:with: excinfo
|
2018-02-27 07:27:15 +08:00
|
|
|
|
2018-02-28 04:15:08 +08:00
|
|
|
pytest.deprecated_call
|
2018-03-02 05:07:06 +08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~
|
2018-02-27 07:34:53 +08:00
|
|
|
|
2018-02-28 04:58:51 +08:00
|
|
|
**Tutorial**: :ref:`ensuring_function_triggers`.
|
|
|
|
|
2018-03-02 04:54:54 +08:00
|
|
|
.. autofunction:: pytest.deprecated_call()
|
2018-02-27 07:57:02 +08:00
|
|
|
:with:
|
2018-02-08 06:53:31 +08:00
|
|
|
|
2018-03-02 04:54:54 +08:00
|
|
|
pytest.register_assert_rewrite
|
2018-03-02 05:07:06 +08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2018-03-02 04:54:54 +08:00
|
|
|
|
|
|
|
**Tutorial**: :ref:`assertion-rewriting`.
|
|
|
|
|
|
|
|
.. autofunction:: pytest.register_assert_rewrite
|
|
|
|
|
2018-02-28 05:26:40 +08:00
|
|
|
pytest.warns
|
2018-03-02 05:07:06 +08:00
|
|
|
~~~~~~~~~~~~
|
2018-02-28 05:26:40 +08:00
|
|
|
|
|
|
|
**Tutorial**: :ref:`assertwarnings`
|
|
|
|
|
2018-03-02 04:54:54 +08:00
|
|
|
.. autofunction:: pytest.warns(expected_warning: Exception, [match])
|
2018-02-28 05:26:40 +08:00
|
|
|
:with:
|
|
|
|
|
2018-03-02 05:20:55 +08:00
|
|
|
|
|
|
|
.. _`marks ref`:
|
|
|
|
|
2018-03-01 07:34:20 +08:00
|
|
|
Marks
|
|
|
|
-----
|
|
|
|
|
|
|
|
Marks can be used apply meta data to *test functions* (but not fixtures), which can then be accessed by
|
|
|
|
fixtures or plugins.
|
|
|
|
|
|
|
|
|
|
|
|
.. _`pytest.mark.parametrize ref`:
|
|
|
|
|
|
|
|
pytest.mark.parametrize
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :doc:`parametrize`.
|
|
|
|
|
|
|
|
.. automethod:: _pytest.python.Metafunc.parametrize
|
|
|
|
|
|
|
|
|
|
|
|
.. _`pytest.mark.skip ref`:
|
|
|
|
|
|
|
|
pytest.mark.skip
|
|
|
|
~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :ref:`skip`.
|
|
|
|
|
|
|
|
Unconditionally skip a test function.
|
|
|
|
|
|
|
|
.. py:function:: pytest.mark.skip(*, reason=None)
|
|
|
|
|
|
|
|
:keyword str reason: Reason why the test function is being skipped.
|
|
|
|
|
|
|
|
|
|
|
|
.. _`pytest.mark.skipif ref`:
|
|
|
|
|
|
|
|
pytest.mark.skipif
|
|
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :ref:`xfail`.
|
|
|
|
|
|
|
|
Skip a test function if a condition is ``True``.
|
|
|
|
|
|
|
|
.. py:function:: pytest.mark.skipif(condition, *, reason=None)
|
|
|
|
|
|
|
|
:type condition: bool or str
|
|
|
|
:param condition: ``True/False`` if the condition should be skipped or a :ref:`condition string <string conditions>`.
|
|
|
|
:keyword str reason: Reason why the test function is being skipped.
|
|
|
|
|
|
|
|
|
|
|
|
.. _`pytest.mark.xfail ref`:
|
|
|
|
|
|
|
|
pytest.mark.xfail
|
|
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :ref:`xfail`.
|
|
|
|
|
|
|
|
Marks a test function as *expected to fail*.
|
|
|
|
|
|
|
|
.. py:function:: pytest.mark.xfail(condition=None, *, reason=None, raises=None, run=True, strict=False)
|
|
|
|
|
|
|
|
:type condition: bool or str
|
|
|
|
:param condition: ``True/False`` if the condition should be marked as xfail or a :ref:`condition string <string conditions>`.
|
|
|
|
:keyword str reason: Reason why the test function is marked as xfail.
|
|
|
|
:keyword Exception raises: Exception subclass expected to be raised by the test function; other exceptions will fail the test.
|
|
|
|
:keyword bool run:
|
|
|
|
If the test function should actually be executed. If ``False``, the function will always xfail and will
|
|
|
|
not be executed (useful a function is segfaulting).
|
|
|
|
:keyword bool strict:
|
|
|
|
* If ``False`` (the default) the function will be shown in the terminal output as ``xfailed`` if it fails
|
|
|
|
and as ``xpass`` if it passes. In both cases this will not cause the test suite to fail as a whole. This
|
|
|
|
is particularly useful to mark *flaky* tests (tests that random at fail) to be tackled later.
|
|
|
|
* If ``True``, the function will be shown in the terminal output as ``xfailed`` if it fails, but if it
|
|
|
|
unexpectedly passes then it will **fail** the test suite. This is particularly useful to mark functions
|
|
|
|
that are always failing and there should be a clear indication if they unexpectedly start to pass (for example
|
|
|
|
a new release of a library fixes a known bug).
|
|
|
|
|
|
|
|
|
|
|
|
custom marks
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Marks are created dynamically using the factory object ``pytest.mark`` and applied as a decorator.
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
@pytest.mark.timeout(10, 'slow', method='thread')
|
|
|
|
def test_function():
|
|
|
|
...
|
|
|
|
|
|
|
|
Will create and attach a :class:`MarkInfo <_pytest.mark.MarkInfo>` object to the collected
|
|
|
|
:class:`Item <_pytest.nodes.Item>`, which can then be accessed by fixtures or hooks with
|
|
|
|
:meth:`Node.get_marker <_pytest.nodes.Node.get_marker>`. The ``mark`` object will have the following attributes:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
mark.args == (10, 'slow')
|
|
|
|
mark.kwargs == {'method': 'thread'}
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-02-09 05:57:26 +08:00
|
|
|
|
|
|
|
Fixtures
|
|
|
|
--------
|
|
|
|
|
2018-02-28 04:58:51 +08:00
|
|
|
**Tutorial**: :ref:`fixture`.
|
|
|
|
|
2018-02-09 05:57:26 +08:00
|
|
|
Fixtures are requested by test functions or other fixtures by declaring them as argument names.
|
|
|
|
|
|
|
|
|
|
|
|
Example of a test requiring a fixture:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
def test_output(capsys):
|
|
|
|
print('hello')
|
|
|
|
out, err = capsys.readouterr()
|
|
|
|
assert out == 'hello\n'
|
|
|
|
|
|
|
|
|
|
|
|
Example of a fixture requiring another fixture:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def db_session(tmpdir):
|
|
|
|
fn = tmpdir / 'db.file'
|
|
|
|
return connect(str(fn))
|
|
|
|
|
|
|
|
For more details, consult the full :ref:`fixtures docs <fixture>`.
|
|
|
|
|
|
|
|
|
2018-03-02 05:07:06 +08:00
|
|
|
@pytest.fixture
|
|
|
|
~~~~~~~~~~~~~~~
|
2018-02-09 05:57:26 +08:00
|
|
|
|
2018-03-02 05:07:06 +08:00
|
|
|
.. autofunction:: pytest.fixture
|
2018-02-09 05:57:26 +08:00
|
|
|
:decorator:
|
|
|
|
|
|
|
|
|
|
|
|
.. _`cache-api`:
|
|
|
|
|
|
|
|
config.cache
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
2018-02-28 04:58:51 +08:00
|
|
|
**Tutorial**: :ref:`cache`.
|
|
|
|
|
2018-02-09 05:57:26 +08:00
|
|
|
The ``config.cache`` object allows other plugins and fixtures
|
|
|
|
to store and retrieve values across test runs. To access it from fixtures
|
|
|
|
request ``pytestconfig`` into your fixture and get it with ``pytestconfig.cache``.
|
|
|
|
|
|
|
|
Under the hood, the cache plugin uses the simple
|
|
|
|
``dumps``/``loads`` API of the :py:mod:`json` stdlib module.
|
|
|
|
|
|
|
|
.. currentmodule:: _pytest.cacheprovider
|
|
|
|
|
|
|
|
.. automethod:: Cache.get
|
|
|
|
.. automethod:: Cache.set
|
|
|
|
.. automethod:: Cache.makedir
|
|
|
|
|
|
|
|
|
|
|
|
capsys
|
|
|
|
~~~~~~
|
|
|
|
|
2018-02-28 04:58:51 +08:00
|
|
|
**Tutorial**: :doc:`capture`.
|
|
|
|
|
2018-02-09 05:57:26 +08:00
|
|
|
.. currentmodule:: _pytest.capture
|
|
|
|
|
|
|
|
.. autofunction:: capsys()
|
2018-02-09 06:29:04 +08:00
|
|
|
:no-auto-options:
|
2018-02-09 05:57:26 +08:00
|
|
|
|
|
|
|
Returns an instance of :py:class:`CaptureFixture`.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
def test_output(capsys):
|
|
|
|
print("hello")
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "hello\n"
|
|
|
|
|
2018-03-02 10:33:21 +08:00
|
|
|
.. autoclass:: CaptureFixture()
|
|
|
|
:members:
|
|
|
|
|
2018-02-09 05:57:26 +08:00
|
|
|
|
|
|
|
capsysbinary
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
2018-02-28 04:58:51 +08:00
|
|
|
**Tutorial**: :doc:`capture`.
|
|
|
|
|
2018-02-09 05:57:26 +08:00
|
|
|
.. autofunction:: capsysbinary()
|
2018-02-09 06:29:04 +08:00
|
|
|
:no-auto-options:
|
2018-02-09 05:57:26 +08:00
|
|
|
|
|
|
|
Returns an instance of :py:class:`CaptureFixture`.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
def test_output(capsysbinary):
|
|
|
|
print("hello")
|
|
|
|
captured = capsysbinary.readouterr()
|
|
|
|
assert captured.out == b"hello\n"
|
|
|
|
|
|
|
|
|
|
|
|
capfd
|
|
|
|
~~~~~~
|
|
|
|
|
2018-02-28 04:58:51 +08:00
|
|
|
**Tutorial**: :doc:`capture`.
|
|
|
|
|
2018-02-09 05:57:26 +08:00
|
|
|
.. autofunction:: capfd()
|
2018-02-09 06:29:04 +08:00
|
|
|
:no-auto-options:
|
2018-02-09 05:57:26 +08:00
|
|
|
|
|
|
|
Returns an instance of :py:class:`CaptureFixture`.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
def test_system_echo(capfd):
|
|
|
|
os.system('echo "hello"')
|
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "hello\n"
|
|
|
|
|
|
|
|
|
|
|
|
capfdbinary
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :doc:`capture`.
|
|
|
|
|
|
|
|
.. autofunction:: capfdbinary()
|
|
|
|
:no-auto-options:
|
|
|
|
|
|
|
|
Returns an instance of :py:class:`CaptureFixture`.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
def test_system_echo(capfdbinary):
|
|
|
|
os.system('echo "hello"')
|
|
|
|
captured = capfdbinary.readouterr()
|
|
|
|
assert captured.out == b"hello\n"
|
|
|
|
|
|
|
|
|
|
|
|
doctest_namespace
|
|
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :doc:`doctest`.
|
|
|
|
|
|
|
|
.. autofunction:: _pytest.doctest.doctest_namespace()
|
|
|
|
|
|
|
|
Usually this fixture is used in conjunction with another ``autouse`` fixture:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
def add_np(doctest_namespace):
|
|
|
|
doctest_namespace['np'] = numpy
|
|
|
|
|
|
|
|
For more details: :ref:`doctest_namespace`.
|
|
|
|
|
|
|
|
|
|
|
|
request
|
|
|
|
~~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :ref:`request example`.
|
|
|
|
|
|
|
|
The ``request`` fixture is a special fixture providing information of the requesting test function.
|
|
|
|
|
|
|
|
.. autoclass:: _pytest.fixtures.FixtureRequest()
|
|
|
|
:members:
|
|
|
|
|
|
|
|
|
|
|
|
pytestconfig
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
|
|
.. autofunction:: _pytest.fixtures.pytestconfig()
|
|
|
|
|
|
|
|
|
|
|
|
record_xml_property
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :ref:`record_xml_property example`.
|
|
|
|
|
|
|
|
.. autofunction:: _pytest.junitxml.record_xml_property()
|
|
|
|
|
|
|
|
caplog
|
|
|
|
~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :doc:`logging`.
|
|
|
|
|
|
|
|
.. autofunction:: _pytest.logging.caplog()
|
|
|
|
:no-auto-options:
|
|
|
|
|
|
|
|
This returns a :class:`_pytest.logging.LogCaptureFixture` instance.
|
|
|
|
|
|
|
|
.. autoclass:: _pytest.logging.LogCaptureFixture
|
|
|
|
:members:
|
|
|
|
|
|
|
|
|
|
|
|
monkeypatch
|
|
|
|
~~~~~~~~~~~
|
|
|
|
|
|
|
|
.. currentmodule:: _pytest.monkeypatch
|
|
|
|
|
|
|
|
**Tutorial**: :doc:`monkeypatch`.
|
|
|
|
|
|
|
|
.. autofunction:: _pytest.monkeypatch.monkeypatch()
|
|
|
|
:no-auto-options:
|
|
|
|
|
|
|
|
This returns a :class:`MonkeyPatch` instance.
|
|
|
|
|
|
|
|
.. autoclass:: _pytest.monkeypatch.MonkeyPatch
|
|
|
|
:members:
|
|
|
|
|
|
|
|
testdir
|
|
|
|
~~~~~~~
|
|
|
|
|
|
|
|
.. currentmodule:: _pytest.pytester
|
|
|
|
|
|
|
|
This fixture provides a :class:`Testdir` instance useful for black-box testing of test files, making it ideal to
|
|
|
|
test plugins.
|
|
|
|
|
|
|
|
To use it, include in your top-most ``conftest.py`` file::
|
|
|
|
|
|
|
|
pytest_plugins = 'pytester'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. autoclass:: Testdir()
|
|
|
|
:members: runpytest,runpytest_subprocess,runpytest_inprocess,makeconftest,makepyfile
|
|
|
|
|
|
|
|
.. autoclass:: RunResult()
|
|
|
|
:members:
|
|
|
|
|
|
|
|
.. autoclass:: LineMatcher()
|
|
|
|
:members:
|
|
|
|
|
|
|
|
|
|
|
|
recwarn
|
|
|
|
~~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :ref:`assertwarnings`
|
|
|
|
|
|
|
|
.. currentmodule:: _pytest.recwarn
|
|
|
|
|
|
|
|
.. autofunction:: recwarn()
|
|
|
|
:no-auto-options:
|
|
|
|
|
|
|
|
.. autoclass:: _pytest.recwarn.WarningsRecorder()
|
|
|
|
:members:
|
|
|
|
|
|
|
|
Each recorded warning is an instance of :class:`warnings.WarningMessage`.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
:class:`RecordedWarning` was changed from a plain class to a namedtuple in pytest 3.1
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
``DeprecationWarning`` and ``PendingDeprecationWarning`` are treated
|
|
|
|
differently; see :ref:`ensuring_function_triggers`.
|
|
|
|
|
|
|
|
|
|
|
|
tmpdir
|
|
|
|
~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :doc:`tmpdir`
|
|
|
|
|
|
|
|
.. currentmodule:: _pytest.tmpdir
|
|
|
|
|
|
|
|
.. autofunction:: tmpdir()
|
|
|
|
:no-auto-options:
|
|
|
|
|
|
|
|
|
|
|
|
tmpdir_factory
|
|
|
|
~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :ref:`tmpdir factory example`
|
|
|
|
|
|
|
|
.. _`tmpdir factory api`:
|
|
|
|
|
|
|
|
``tmpdir_factory`` instances have the following methods:
|
|
|
|
|
|
|
|
.. currentmodule:: _pytest.tmpdir
|
|
|
|
|
|
|
|
.. automethod:: TempdirFactory.mktemp
|
|
|
|
.. automethod:: TempdirFactory.getbasetemp
|
|
|
|
|
|
|
|
|
|
|
|
.. _`hook-reference`:
|
|
|
|
|
|
|
|
Hooks
|
|
|
|
-----
|
|
|
|
|
|
|
|
**Tutorial**: :doc:`writing_plugins`.
|
|
|
|
|
|
|
|
.. currentmodule:: _pytest.hookspec
|
|
|
|
|
|
|
|
Reference to all hooks which can be implemented by :ref:`conftest.py files <localplugin>` and :ref:`plugins <plugins>`.
|
|
|
|
|
|
|
|
Bootstrapping hooks
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Bootstrapping hooks called for plugins registered early enough (internal and setuptools plugins).
|
|
|
|
|
|
|
|
.. autofunction:: pytest_load_initial_conftests
|
|
|
|
.. autofunction:: pytest_cmdline_preparse
|
|
|
|
.. autofunction:: pytest_cmdline_parse
|
|
|
|
.. autofunction:: pytest_cmdline_main
|
2018-02-09 05:57:26 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Initialization hooks
|
|
|
|
~~~~~~~~~~~~~~~~~~~~
|
2018-02-09 05:57:26 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Initialization hooks called for plugins and ``conftest.py`` files.
|
2018-02-09 05:57:26 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autofunction:: pytest_addoption
|
2018-03-02 04:55:45 +08:00
|
|
|
.. autofunction:: pytest_addhooks
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autofunction:: pytest_configure
|
|
|
|
.. autofunction:: pytest_unconfigure
|
2018-02-28 04:58:51 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Test running hooks
|
|
|
|
~~~~~~~~~~~~~~~~~~
|
2018-02-09 05:57:26 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
All runtest related hooks receive a :py:class:`pytest.Item <_pytest.main.Item>` object.
|
2018-02-09 05:57:26 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autofunction:: pytest_runtestloop
|
|
|
|
.. autofunction:: pytest_runtest_protocol
|
|
|
|
.. autofunction:: pytest_runtest_logstart
|
|
|
|
.. autofunction:: pytest_runtest_logfinish
|
|
|
|
.. autofunction:: pytest_runtest_setup
|
|
|
|
.. autofunction:: pytest_runtest_call
|
|
|
|
.. autofunction:: pytest_runtest_teardown
|
|
|
|
.. autofunction:: pytest_runtest_makereport
|
2018-02-09 05:57:26 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
For deeper understanding you may look at the default implementation of
|
|
|
|
these hooks in :py:mod:`_pytest.runner` and maybe also
|
|
|
|
in :py:mod:`_pytest.pdb` which interacts with :py:mod:`_pytest.capture`
|
|
|
|
and its input/output capturing in order to immediately drop
|
|
|
|
into interactive debugging when a test failure occurs.
|
2018-02-09 05:57:26 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
The :py:mod:`_pytest.terminal` reported specifically uses
|
|
|
|
the reporting hook to print information about a test run.
|
2018-02-09 05:57:26 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Collection hooks
|
|
|
|
~~~~~~~~~~~~~~~~
|
2018-02-09 05:57:26 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
``pytest`` calls the following hooks for collecting files and directories:
|
2018-02-09 06:08:44 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autofunction:: pytest_collection
|
|
|
|
.. autofunction:: pytest_ignore_collect
|
|
|
|
.. autofunction:: pytest_collect_directory
|
|
|
|
.. autofunction:: pytest_collect_file
|
2018-02-28 04:58:51 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
For influencing the collection of objects in Python modules
|
|
|
|
you can use the following hook:
|
2018-02-09 06:08:44 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autofunction:: pytest_pycollect_makeitem
|
|
|
|
.. autofunction:: pytest_generate_tests
|
|
|
|
.. autofunction:: pytest_make_parametrize_id
|
2018-02-09 06:08:44 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
After collection is complete, you can modify the order of
|
|
|
|
items, delete or otherwise amend the test items:
|
2018-02-09 06:08:44 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autofunction:: pytest_collection_modifyitems
|
2018-02-09 06:08:44 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Reporting hooks
|
|
|
|
~~~~~~~~~~~~~~~
|
2018-02-27 07:27:15 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Session related reporting hooks:
|
2018-02-27 07:27:15 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autofunction:: pytest_collectstart
|
|
|
|
.. autofunction:: pytest_itemcollected
|
|
|
|
.. autofunction:: pytest_collectreport
|
|
|
|
.. autofunction:: pytest_deselected
|
|
|
|
.. autofunction:: pytest_report_header
|
|
|
|
.. autofunction:: pytest_report_collectionfinish
|
|
|
|
.. autofunction:: pytest_report_teststatus
|
|
|
|
.. autofunction:: pytest_terminal_summary
|
|
|
|
.. autofunction:: pytest_fixture_setup
|
|
|
|
.. autofunction:: pytest_fixture_post_finalizer
|
2018-02-27 07:27:15 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
And here is the central hook for reporting about
|
|
|
|
test execution:
|
2018-02-28 04:58:51 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autofunction:: pytest_runtest_logreport
|
2018-02-27 07:27:15 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
You can also use this hook to customize assertion representation for some
|
|
|
|
types:
|
2018-02-28 04:13:14 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autofunction:: pytest_assertrepr_compare
|
2018-02-28 04:13:14 +08:00
|
|
|
|
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Debugging/Interaction hooks
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2018-02-28 04:19:57 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
There are few hooks which can be used for special
|
|
|
|
reporting or interaction with exceptions:
|
2018-02-28 04:19:57 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autofunction:: pytest_internalerror
|
|
|
|
.. autofunction:: pytest_keyboard_interrupt
|
|
|
|
.. autofunction:: pytest_exception_interact
|
|
|
|
.. autofunction:: pytest_enter_pdb
|
2018-02-28 04:58:51 +08:00
|
|
|
|
2018-02-28 04:32:34 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Objects
|
|
|
|
-------
|
2018-02-28 04:32:34 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Full reference to objects accessible from :ref:`fixtures <fixture>` or :ref:`hooks <hook-reference>`.
|
2018-02-28 04:48:19 +08:00
|
|
|
|
2018-02-28 04:32:34 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
CallInfo
|
|
|
|
~~~~~~~~
|
2018-02-28 04:32:34 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.runner.CallInfo()
|
2018-02-28 04:32:34 +08:00
|
|
|
:members:
|
2018-02-28 04:48:19 +08:00
|
|
|
|
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Class
|
|
|
|
~~~~~
|
2018-02-28 04:48:19 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.python.Class()
|
|
|
|
:members:
|
|
|
|
:show-inheritance:
|
2018-02-28 05:03:35 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Collector
|
|
|
|
~~~~~~~~~
|
2018-02-28 04:48:19 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.nodes.Collector()
|
|
|
|
:members:
|
|
|
|
:show-inheritance:
|
2018-02-28 04:48:19 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Config
|
|
|
|
~~~~~~
|
2018-02-28 04:48:19 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.config.Config()
|
2018-02-28 04:48:19 +08:00
|
|
|
:members:
|
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
ExceptionInfo
|
|
|
|
~~~~~~~~~~~~~
|
2018-02-28 05:03:35 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest._code.ExceptionInfo
|
|
|
|
:members:
|
2018-02-28 05:03:35 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
FixtureDef
|
|
|
|
~~~~~~~~~~
|
2018-02-28 05:03:35 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.fixtures.FixtureDef()
|
|
|
|
:members:
|
|
|
|
:show-inheritance:
|
2018-02-28 05:03:35 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
FSCollector
|
|
|
|
~~~~~~~~~~~
|
2018-02-28 05:03:35 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.nodes.FSCollector()
|
|
|
|
:members:
|
|
|
|
:show-inheritance:
|
2018-02-28 05:03:35 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Function
|
|
|
|
~~~~~~~~
|
2018-02-28 05:03:35 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.python.Function()
|
|
|
|
:members:
|
|
|
|
:show-inheritance:
|
2018-02-28 05:03:35 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Item
|
|
|
|
~~~~
|
|
|
|
|
|
|
|
.. autoclass:: _pytest.nodes.Item()
|
2018-02-28 05:03:35 +08:00
|
|
|
:members:
|
2018-03-01 07:52:41 +08:00
|
|
|
:show-inheritance:
|
2018-02-28 05:03:35 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
MarkDecorator
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
.. autoclass:: _pytest.mark.MarkDecorator
|
2018-02-28 05:03:35 +08:00
|
|
|
:members:
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
MarkGenerator
|
|
|
|
~~~~~~~~~~~~~
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.mark.MarkGenerator
|
|
|
|
:members:
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
MarkInfo
|
|
|
|
~~~~~~~~
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.mark.MarkInfo
|
|
|
|
:members:
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Metafunc
|
|
|
|
~~~~~~~~
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.python.Metafunc
|
2018-02-28 05:26:40 +08:00
|
|
|
:members:
|
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Module
|
|
|
|
~~~~~~
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.python.Module()
|
|
|
|
:members:
|
|
|
|
:show-inheritance:
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Node
|
|
|
|
~~~~
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.nodes.Node()
|
|
|
|
:members:
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Parser
|
2018-02-28 05:26:40 +08:00
|
|
|
~~~~~~
|
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.config.Parser()
|
|
|
|
:members:
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
PluginManager
|
|
|
|
~~~~~~~~~~~~~
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: pluggy.PluginManager()
|
|
|
|
:members:
|
2018-02-28 05:26:40 +08:00
|
|
|
|
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
PytestPluginManager
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.config.PytestPluginManager()
|
|
|
|
:members:
|
|
|
|
:undoc-members:
|
|
|
|
:show-inheritance:
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
Session
|
|
|
|
~~~~~~~
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.main.Session()
|
|
|
|
:members:
|
|
|
|
:show-inheritance:
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
TestReport
|
|
|
|
~~~~~~~~~~
|
2018-02-28 05:26:40 +08:00
|
|
|
|
2018-03-01 07:52:41 +08:00
|
|
|
.. autoclass:: _pytest.runner.TestReport()
|
|
|
|
:members:
|
|
|
|
:inherited-members:
|
|
|
|
|
|
|
|
_Result
|
|
|
|
~~~~~~~
|
|
|
|
|
|
|
|
.. autoclass:: pluggy._Result
|
|
|
|
:members:
|
2018-03-02 05:20:55 +08:00
|
|
|
|
|
|
|
Special Variables
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
pytest treats some global variables in a special manner when defined in a test module.
|
|
|
|
|
|
|
|
|
|
|
|
pytest_plugins
|
|
|
|
~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :ref:`available installable plugins`
|
|
|
|
|
|
|
|
Can be declared at the **global** level in *test modules* and *conftest.py files* to register additional plugins.
|
|
|
|
Can be either a ``str`` or ``Sequence[str]``.
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
pytest_plugins = "myapp.testsupport.myplugin"
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
pytest_plugins = ("myapp.testsupport.tools", "myapp.testsupport.regression")
|
|
|
|
|
|
|
|
|
|
|
|
pytest_mark
|
|
|
|
~~~~~~~~~~~
|
|
|
|
|
|
|
|
**Tutorial**: :ref:`scoped-marking`
|
|
|
|
|
|
|
|
Can be declared at the **global** level in *test modules* to apply one or more :ref:`marks <marks ref>` to all
|
|
|
|
test functions and methods. Can be either a single mark or a sequence of marks.
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
pytestmark = pytest.mark.webtest
|
|
|
|
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
pytestmark = (pytest.mark.integration, pytest.mark.slow)
|
|
|
|
|
2018-03-07 07:40:07 +08:00
|
|
|
PYTEST_DONT_REWRITE (module docstring)
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The text ``PYTEST_DONT_REWRITE`` can be add to any **module docstring** to disable
|
|
|
|
:ref:`assertion rewriting <assert introspection>` for that module.
|
|
|
|
|
|
|
|
|
|
|
|
Environment Variables
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
Environment variables that can be used to change pytest's behavior.
|
|
|
|
|
|
|
|
PYTEST_ADDOPTS
|
|
|
|
~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
This contains a command-line (parsed by the py:mod:`shlex` module) that will be **prepended** to the command line given
|
|
|
|
by the user, see :ref:`adding default options` for more information.
|
|
|
|
|
|
|
|
PYTEST_DEBUG
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
|
|
When set, pytest will print tracing and debug information.
|
|
|
|
|
|
|
|
PYTEST_PLUGINS
|
|
|
|
~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Contains comma-separated list of modules that should be loaded as plugins:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
export PYTEST_PLUGINS=mymodule.plugin,xdisst
|
|
|
|
|
|
|
|
|
|
|
|
PYTEST_CURRENT_TEST
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
This is not meant to be set by users, but is set by pytest internally with the name of the current test so other
|
|
|
|
processes can inspect it, see :ref:`pytest current test env` for more information.
|
|
|
|
|
2018-03-02 05:20:55 +08:00
|
|
|
|