Skip to content
Open
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
5 changes: 5 additions & 0 deletions changelog/4482.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Corrected the "Dynamically adding command line options" example so it no longer
refers to the ``pytest_load_initial_conftests`` hook as living in a
``conftest.py``. As noted in the hook reference, ``pytest_load_initial_conftests``
is not called for ``conftest.py`` files and must be provided by an installable
plugin.
2 changes: 1 addition & 1 deletion doc/en/example/simple.rst
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ the command line arguments before they get processed:
If you have the :pypi:`xdist plugin <pytest-xdist>` installed
you will now always perform test runs using a number
of subprocesses close to your CPU. Running in an empty
directory with the above conftest.py:
directory with the above plugin:

.. code-block:: pytest

Expand Down
Loading