summaryrefslogtreecommitdiff
path: root/doc/faq.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-10-05 07:38:36 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-10-05 07:38:36 -0400
commit9e39d3d0013be47fc4dfe2808170bc7e6c1f7ba5 (patch)
tree5503eb809758f4b2e8e9c08b9cbadfcef2f6152e /doc/faq.rst
parent2cd0fc1400d240ffa486e783a078fd0058723d47 (diff)
downloadpython-coveragepy-9e39d3d0013be47fc4dfe2808170bc7e6c1f7ba5.tar.gz
Ugh, maybe this looks right...
Diffstat (limited to 'doc/faq.rst')
-rw-r--r--doc/faq.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/faq.rst b/doc/faq.rst
index 60720c7..cc9d49a 100644
--- a/doc/faq.rst
+++ b/doc/faq.rst
@@ -10,14 +10,14 @@ Frequently asked questions
--------------------------
-**Q: I use `nose`_ to run my tests, and the ``--with-cover`` plugin doesn't let
-me create HTML or XML reports. What should I do?**
+**Q: I use nose to run my tests, and its cover plugin doesn't let me create
+HTML or XML reports. What should I do?**
-.. _nose: http://somethingaboutorange.com/mrl/projects/nose
+First run your tests and collect coverage data with `nose`_ and its plugin.
+This will write coverage data into a .coverage file. Then run coverage.py from
+the :ref:`command line <cmd>` to create the reports you need from that data.
-First run your tests and collect coverage data with nose and its plugin. This
-will write coverage data into a .coverage file. Then run coverage.py from the
-command line to create the reports you need from that data.
+.. _nose: http://somethingaboutorange.com/mrl/projects/nose
**Q: Why do unexecutable lines show up as executed?**