summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-05-07 01:58:03 -0700
committerSteve Piercy <web@stevepiercy.com>2016-05-07 01:58:03 -0700
commitedab48b35d1175bf20416fa570ba32506605e662 (patch)
tree038cab695ff6501272a83278c7bd4a2b26856744
parentb0eb612ca540d5d69841902424cd09b92b80e13b (diff)
downloadpyramid-edab48b35d1175bf20416fa570ba32506605e662.tar.gz
pyramid-edab48b35d1175bf20416fa570ba32506605e662.tar.bz2
pyramid-edab48b35d1175bf20416fa570ba32506605e662.zip
update tutorials/wiki/tests.rst with py.test and coverage defaults
-rw-r--r--docs/tutorials/wiki/tests.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/tutorials/wiki/tests.rst b/docs/tutorials/wiki/tests.rst
index 788ec595b..aa4cb3597 100644
--- a/docs/tutorials/wiki/tests.rst
+++ b/docs/tutorials/wiki/tests.rst
@@ -52,20 +52,21 @@ Running the tests
=================
We can run these tests by using ``py.test`` similarly to how we did in
-:ref:`running_tests`. Our testing dependencies have already been satisfied,
-courtesy of the scaffold, so we can jump right to running tests.
+:ref:`running_tests`. Courtest of the scaffold, our testing dependencies have
+already been satisfied and ``py.test`` and coverage has already been
+configured, so we can jump right to running tests.
On UNIX:
.. code-block:: text
- $ $VENV/bin/py.test tutorial/tests.py -q
+ $ $VENV/bin/py.test -q
On Windows:
.. code-block:: text
- c:\pyramidtut\tutorial> %VENV%\Scripts\py.test tutorial/tests.py -q
+ c:\pyramidtut\tutorial> %VENV%\Scripts\py.test -q
The expected result should look like the following: