📝 Use explicit RST roles for built-in types in docs

This commit is contained in:
Sviatoslav Sydorenko (Святослав Сидоренко) 2024-06-21 22:05:43 +02:00 committed by GitHub
parent b1255a9aae
commit 24450e33e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
Added support for keyword matching in marker expressions. Added support for keyword matching in marker expressions.
Now tests can be selected by marker keyword arguments. Now tests can be selected by marker keyword arguments.
Supported values are ``int``, (unescaped) ``str``, ``bool`` & ``None``. Supported values are :class:`int`, (unescaped) :class:`str`, :class:`bool` & :data:`None`.
See :ref:`marker examples <marker_keyword_expression_example>` for more information. See :ref:`marker examples <marker_keyword_expression_example>` for more information.

View File

@ -93,7 +93,7 @@ keyword arguments, e.g. to run only tests marked with ``device`` and the specifi
.. note:: Only keyword argument matching is supported in marker expressions. .. note:: Only keyword argument matching is supported in marker expressions.
.. note:: Only ``int``, (unescaped) ``str``, ``bool`` & ``None`` values are supported in marker expressions. .. note:: Only :class:`int`, (unescaped) :class:`str`, :class:`bool` & :data:`None` values are supported in marker expressions.
Selecting tests based on their node ID Selecting tests based on their node ID
-------------------------------------- --------------------------------------