summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/tests.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-10-04 17:09:06 -0700
committerGitHub <noreply@github.com>2018-10-04 17:09:06 -0700
commitd2c9dd9d0ae534a085c7adbff869de357714812b (patch)
treec4a5c1925c06968952a5d961926f980dd26e27d8 /docs/tutorials/wiki/tests.rst
parent052cb72b63b9f5a36f45a4135d1e1c05c10004dd (diff)
parent9c39f657e9edbb59ef83a375500596f500c70a44 (diff)
downloadpyramid-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/tutorials/wiki/tests.rst')
-rw-r--r--docs/tutorials/wiki/tests.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/wiki/tests.rst b/docs/tutorials/wiki/tests.rst
index c3a1ca79a..6c7f24645 100644
--- a/docs/tutorials/wiki/tests.rst
+++ b/docs/tutorials/wiki/tests.rst
@@ -51,22 +51,22 @@ follows:
Running the tests
=================
-We can run these tests by using ``py.test`` similarly to how we did in
+We can run these tests by using ``pytest`` similarly to how we did in
:ref:`running_tests`. Courtesy of the cookiecutter, our testing dependencies have
-already been satisfied and ``py.test`` and coverage have already been
+already been satisfied and ``pytest`` and coverage have already been
configured, so we can jump right to running tests.
On Unix:
.. code-block:: bash
- $VENV/bin/py.test -q
+ $VENV/bin/pytest -q
On Windows:
.. code-block:: doscon
- %VENV%\Scripts\py.test -q
+ %VENV%\Scripts\pytest -q
The expected result should look like the following: