summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Cutler <paul.r.cutler@gmail.com>2018-10-03 09:39:52 -0500
committerPaul Cutler <paul.r.cutler@gmail.com>2018-10-03 09:39:52 -0500
commitf6333267acdd10bc38eee161c5e64bbf212fe555 (patch)
tree08566be7e86152ca2cfb5041fdb5dee4c1033f50
parent171593c8c851ae0d0eafc7ff84e35e367a725b12 (diff)
downloadpyramid-f6333267acdd10bc38eee161c5e64bbf212fe555.tar.gz
pyramid-f6333267acdd10bc38eee161c5e64bbf212fe555.tar.bz2
pyramid-f6333267acdd10bc38eee161c5e64bbf212fe555.zip
Change references to "py.test" in Quick Tutorial Unit Test page
Change the references of "py.test" to "pytest" per pytest 3.0 release in the Unit Test and pytest page of the documentation in quick tutorial
-rw-r--r--docs/quick_tutorial/unit_testing.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tutorial/unit_testing.rst b/docs/quick_tutorial/unit_testing.rst
index 09e3ea197..48cffd0e1 100644
--- a/docs/quick_tutorial/unit_testing.rst
+++ b/docs/quick_tutorial/unit_testing.rst
@@ -62,7 +62,7 @@ Steps
.. code-block:: bash
- $VENV/bin/py.test tutorial/tests.py -q
+ $VENV/bin/pytest tutorial/tests.py -q
.
1 passed in 0.14 seconds
@@ -96,7 +96,7 @@ Extra credit
============
#. Change the test to assert that the response status code should be ``404``
- (meaning, not found). Run ``py.test`` again. Read the error report and see
+ (meaning, not found). Run ``pytest`` again. Read the error report and see
if you can decipher what it is telling you.
#. As a more realistic example, put the ``tests.py`` back as you found it, and