Fix minor typos in doctest.rst (#7828)

This commit is contained in:
Max Voitko 2020-10-02 16:39:15 +03:00 committed by GitHub
parent b250c9d615
commit cb0a13a523
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
Doctest integration for modules and test files
=========================================================
By default all files matching the ``test*.txt`` pattern will
By default, all files matching the ``test*.txt`` pattern will
be run through the python standard ``doctest`` module. You
can change the pattern by issuing:
@ -206,7 +206,7 @@ It is possible to use fixtures using the ``getfixture`` helper:
>>> ...
>>>
Note that the fixture needs to be defined in a place visible by pytest, for example a `conftest.py`
Note that the fixture needs to be defined in a place visible by pytest, for example, a `conftest.py`
file or plugin; normal python files containing docstrings are not normally scanned for fixtures
unless explicitly configured by :confval:`python_files`.