doc/reference: don't document `pytest.__version__` under "Marks"
This commit is contained in:
parent
5c69eced6c
commit
e6166ccc3c
|
@ -9,6 +9,39 @@ This page contains the full reference to pytest's API.
|
||||||
:depth: 3
|
:depth: 3
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
|
Constants
|
||||||
|
---------
|
||||||
|
|
||||||
|
pytest.__version__
|
||||||
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
The current pytest version, as a string::
|
||||||
|
|
||||||
|
>>> import pytest
|
||||||
|
>>> pytest.__version__
|
||||||
|
'7.0.0'
|
||||||
|
|
||||||
|
|
||||||
|
.. _`version-tuple`:
|
||||||
|
|
||||||
|
pytest.version_tuple
|
||||||
|
~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
.. versionadded:: 7.0
|
||||||
|
|
||||||
|
The current pytest version, as a tuple::
|
||||||
|
|
||||||
|
>>> import pytest
|
||||||
|
>>> pytest.version_tuple
|
||||||
|
(7, 0, 0)
|
||||||
|
|
||||||
|
For pre-releases, the last component will be a string with the prerelease version::
|
||||||
|
|
||||||
|
>>> import pytest
|
||||||
|
>>> pytest.version_tuple
|
||||||
|
(7, 0, '0rc1')
|
||||||
|
|
||||||
|
|
||||||
Functions
|
Functions
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
@ -226,37 +259,6 @@ Marks a test function as *expected to fail*.
|
||||||
a new release of a library fixes a known bug).
|
a new release of a library fixes a known bug).
|
||||||
|
|
||||||
|
|
||||||
pytest.__version__
|
|
||||||
~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
The current pytest version, as a string::
|
|
||||||
|
|
||||||
>>> import pytest
|
|
||||||
>>> pytest.__version__
|
|
||||||
'7.0.0'
|
|
||||||
|
|
||||||
|
|
||||||
.. _`version-tuple`:
|
|
||||||
|
|
||||||
pytest.version_tuple
|
|
||||||
~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
.. versionadded:: 7.0
|
|
||||||
|
|
||||||
The current pytest version, as a tuple::
|
|
||||||
|
|
||||||
>>> import pytest
|
|
||||||
>>> pytest.version_tuple
|
|
||||||
(7, 0, 0)
|
|
||||||
|
|
||||||
For pre-releases, the last component will be a string with the prerelease version::
|
|
||||||
|
|
||||||
>>> import pytest
|
|
||||||
>>> pytest.version_tuple
|
|
||||||
(7, 0, '0rc1')
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Custom marks
|
Custom marks
|
||||||
~~~~~~~~~~~~
|
~~~~~~~~~~~~
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue