summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/tests.rst
diff options
context:
space:
mode:
authorPaul Cutler <paul.r.cutler@gmail.com>2018-10-03 09:27:31 -0500
committerPaul Cutler <paul.r.cutler@gmail.com>2018-10-03 09:27:31 -0500
commit36d48753abf23f109f2616a3b83f482d63781f7e (patch)
tree829d5ff227336ae5e39206331ad2b9462289f808 /docs/tutorials/wiki/tests.rst
parent5cc53de8dd0da263b053b3e96f3014e207cb5331 (diff)
downloadpyramid-36d48753abf23f109f2616a3b83f482d63781f7e.tar.gz
pyramid-36d48753abf23f109f2616a3b83f482d63781f7e.tar.bz2
pyramid-36d48753abf23f109f2616a3b83f482d63781f7e.zip
Change references to "py.test" to "pytest" in ZODB tutorial test page
Change all references of "py.test" to "pytest" per pytest 3.0 release in the test page of the ZODB + Traversal tutorial
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: