Merge 33d0613483
into 57bc6df510
This commit is contained in:
commit
641ce61f29
1
AUTHORS
1
AUTHORS
|
@ -70,6 +70,7 @@ Brian Maissy
|
||||||
Brian Okken
|
Brian Okken
|
||||||
Brianna Laugher
|
Brianna Laugher
|
||||||
Bruno Oliveira
|
Bruno Oliveira
|
||||||
|
Bryce Gattis
|
||||||
Cal Jacobson
|
Cal Jacobson
|
||||||
Cal Leeming
|
Cal Leeming
|
||||||
Carl Friedrich Bolz
|
Carl Friedrich Bolz
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Added paragraph in ``Specifying which tests to run`` documentation to clarify pytest capabilities when trying to run tests for a single module.
|
|
@ -26,6 +26,11 @@ Pytest supports several ways to run and select tests from the command-line or fr
|
||||||
|
|
||||||
pytest test_mod.py
|
pytest test_mod.py
|
||||||
|
|
||||||
|
When passing a path as a positional argument, pytest does not recursively
|
||||||
|
search when given a file basename. If you want to pass a path to a file, you
|
||||||
|
must pass either a relative path or an absolute path. Otherwise, consider the
|
||||||
|
below keyword expressions instead.
|
||||||
|
|
||||||
**Run tests in a directory**
|
**Run tests in a directory**
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
Loading…
Reference in New Issue