summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/tests.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-05-08 12:07:08 -0700
committerSteve Piercy <web@stevepiercy.com>2016-05-08 12:07:08 -0700
commitc28854062b2092a416fb48a671b07248c47df6b5 (patch)
tree585208aa81b4e1fbae994965ec3a3eb11b364c8e /docs/tutorials/wiki/tests.rst
parentd785b7d7e3608848cdb9d21e7b43b524f4251ff3 (diff)
parentd0c1f9ad5e82c265974f5c678c9d4ea459375593 (diff)
downloadpyramid-c28854062b2092a416fb48a671b07248c47df6b5.tar.gz
pyramid-c28854062b2092a416fb48a671b07248c47df6b5.tar.bz2
pyramid-c28854062b2092a416fb48a671b07248c47df6b5.zip
Merge pull request #2550 from Pylons/vincent-ferotin-scaffolds-allow-pytest-run-without-args
Vincent ferotin scaffolds allow pytest run without args
Diffstat (limited to 'docs/tutorials/wiki/tests.rst')
-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..85a023cc9 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`. Courtesy of the scaffold, our testing dependencies have
+already been satisfied and ``py.test`` and coverage have 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: