summaryrefslogtreecommitdiff
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
commit1b1993bc5f59f0b9ee48bfc21933bf8c169cba67 (patch)
tree579d727098a01e9616ae973a9564344cff9f87c3
parent33bdc821b36a9d046ef945480d4070a32a7b07f4 (diff)
downloadpython-coveragepy-git-1b1993bc5f59f0b9ee48bfc21933bf8c169cba67.tar.gz
Ugh, maybe this looks right...
-rw-r--r--doc/faq.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/faq.rst b/doc/faq.rst
index 60720c76..cc9d49a6 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?**