diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-04 17:09:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-04 17:09:06 -0700 |
| commit | d2c9dd9d0ae534a085c7adbff869de357714812b (patch) | |
| tree | c4a5c1925c06968952a5d961926f980dd26e27d8 /docs/quick_tutorial/unit_testing.rst | |
| parent | 052cb72b63b9f5a36f45a4135d1e1c05c10004dd (diff) | |
| parent | 9c39f657e9edbb59ef83a375500596f500c70a44 (diff) | |
| download | pyramid-d2c9dd9d0ae534a085c7adbff869de357714812b.tar.gz pyramid-d2c9dd9d0ae534a085c7adbff869de357714812b.tar.bz2 pyramid-d2c9dd9d0ae534a085c7adbff869de357714812b.zip | |
Merge pull request #3367 from prcutler/update-pytest-docs
Change all references of "py.test" to "pytest" in Pyramid documentation
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 |
