summaryrefslogtreecommitdiff
path: root/docs/tutorials
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-06-22 18:36:07 +0000
committerChris McDonough <chrism@agendaless.com>2009-06-22 18:36:07 +0000
commit56373e32181e08b59e71a199f16065d269425164 (patch)
tree54f5fd2b65273b59f49359e6c09210b8f9e531bb /docs/tutorials
parentdfc6e5cbcb74b86f2b60cb292a0146408a9b229b (diff)
downloadpyramid-56373e32181e08b59e71a199f16065d269425164.tar.gz
pyramid-56373e32181e08b59e71a199f16065d269425164.tar.bz2
pyramid-56373e32181e08b59e71a199f16065d269425164.zip
Make sure nose and coverage are installed.
Diffstat (limited to 'docs/tutorials')
-rw-r--r--docs/tutorials/bfgwiki2/installation.rst18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/tutorials/bfgwiki2/installation.rst b/docs/tutorials/bfgwiki2/installation.rst
index 73687fff2..0a02ce9e1 100644
--- a/docs/tutorials/bfgwiki2/installation.rst
+++ b/docs/tutorials/bfgwiki2/installation.rst
@@ -208,6 +208,24 @@ test`` does but provides additional "coverage" information, exposing
which lines of your project are "covered" (or not covered) by the
tests.
+To get this functionality working, we'll need to install a couple of
+other packages into our ``virtualenv``: ``nose`` and ``coverage``:
+
+On UNIX:
+
+.. code-block:: bash
+
+ $ ../bin/easy_install nose coverage
+
+On Windows:
+
+.. code-block:: bat
+
+ c:\bfgfntut\tutorial> ..\Scripts\easy_install nose coverage
+
+Once ``nose`` and ``coverage`` are installed, we can actually run the
+coverage tests.
+
On UNIX:
.. code-block:: bash