diff options
| author | Paul Cutler <paul.r.cutler@gmail.com> | 2018-10-03 09:39:52 -0500 |
|---|---|---|
| committer | Paul Cutler <paul.r.cutler@gmail.com> | 2018-10-03 09:39:52 -0500 |
| commit | f6333267acdd10bc38eee161c5e64bbf212fe555 (patch) | |
| tree | 08566be7e86152ca2cfb5041fdb5dee4c1033f50 /docs/quick_tutorial/unit_testing.rst | |
| parent | 171593c8c851ae0d0eafc7ff84e35e367a725b12 (diff) | |
| download | pyramid-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
Diffstat (limited to 'docs/quick_tutorial/unit_testing.rst')
| -rw-r--r-- | docs/quick_tutorial/unit_testing.rst | 4 |
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 |
