Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog/13904.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed the TOML type of the verbosity settings in the API reference from number to string.
6 changes: 3 additions & 3 deletions doc/en/reference/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2596,7 +2596,7 @@ passed multiple times. The expected format is ``name=value``. For example::
.. code-block:: toml

[pytest]
verbosity_assertions = 2
verbosity_assertions = "2"

.. tab:: ini

Expand All @@ -2618,7 +2618,7 @@ passed multiple times. The expected format is ``name=value``. For example::
.. code-block:: toml

[pytest]
verbosity_subtests = 1
verbosity_subtests = "1"

.. tab:: ini

Expand All @@ -2645,7 +2645,7 @@ passed multiple times. The expected format is ``name=value``. For example::
.. code-block:: toml

[pytest]
verbosity_test_cases = 2
verbosity_test_cases = "2"

.. tab:: ini

Expand Down